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.
2 parents 7dcd9ad + d8f04f9 commit 755e99fCopy full SHA for 755e99f
autoload/pymode/breakpoint.vim
@@ -17,7 +17,7 @@ fun! pymode#breakpoint#init() "{{{
17
18
from imp import find_module
19
20
-for module in ('pudb', 'ipdb'):
+for module in ('wdb', 'pudb', 'ipdb'):
21
try:
22
find_module(module)
23
vim.command('let g:pymode_breakpoint_cmd = "import %s; %s.set_trace() # XXX BREAKPOINT"' % (module, module))
0 commit comments