Add python snippet to insert ipdb breakpoint

This commit is contained in:
Kenneth Benzie 2017-11-09 18:17:11 +00:00
parent 56a1a5c70e
commit 496047014e

View File

@ -18,3 +18,7 @@ if __name__ == '__main__':
except KeyboardInterrupt: except KeyboardInterrupt:
pass pass
endsnippet endsnippet
snippet debug "Set ipdb breakpoint"
import ipdb; ipdb.set_trace()
endsnippet