Add python snippet to insert ipdb breakpoint

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

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