Add python snippet to insert ipdb breakpoint

This commit is contained in:
Kenneth Benzie 2017-11-09 18:17:11 +00:00
parent e6be50a3af
commit cb3209eec4

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