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:
@@ -1,13 +1,13 @@
|
|||||||
snippet dbg "IPython Debugger abbrv" !b
|
snippet dbg "IPython Debugger abbrv" !b
|
||||||
import ipdb; ipdb.set_trace()
|
__import__('pdb').set_trace()
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet rdbg "Remote ipdb abbrv" !b
|
snippet ripdb "Remote ipdb abbrv" !b
|
||||||
import ripdb; ripdb.set_trace()
|
__import__('ripdb').set_trace()
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet pdb "pdb abbrv" !b
|
snippet ipdb "pdb abbrv" !b
|
||||||
import pdb; pdb.set_trace()
|
__import__('ipdb').set_trace()
|
||||||
endsnippet
|
endsnippet
|
||||||
|
|
||||||
snippet docmodule "Doc module" !b
|
snippet docmodule "Doc module" !b
|
||||||
|
|||||||
Reference in New Issue
Block a user