We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a340200 commit 9eafd73Copy full SHA for 9eafd73
snippets/python-mode/ipdb
@@ -0,0 +1,6 @@
1
+# -*- mode: snippet; require-final-newline: nil -*-
2
+# name: ipdb trace
3
+# key: ipdb
4
+# group: debug
5
+# --
6
+import ipdb; ipdb.set_trace()
snippets/python-mode/pdb
+# name: pdb trace
+# key: pdb
+import pdb; pdb.set_trace()
snippets/python-mode/pudb
+# name: pudb trace
+# key: pudb
+import pudb; pu.db
0 commit comments