1
0
mirror of https://github.com/gryf/.vim.git synced 2025-12-17 11:30:29 +01:00

Make pdb default debugger (in favor of pdb++ if exists)

This commit is contained in:
gry
2018-08-28 08:54:49 +02:00
parent 0864a40488
commit 8a4a2bc002

View File

@@ -1,13 +1,13 @@
snippet dbg "IPython Debugger abbrv" !b
import ipdb; ipdb.set_trace()
__import__('pdb').set_trace()
endsnippet
snippet rdbg "Remote ipdb abbrv" !b
import ripdb; ripdb.set_trace()
snippet ripdb "Remote ipdb abbrv" !b
__import__('ripdb').set_trace()
endsnippet
snippet pdb "pdb abbrv" !b
import pdb; pdb.set_trace()
snippet ipdb "pdb abbrv" !b
__import__('ipdb').set_trace()
endsnippet
snippet docmodule "Doc module" !b