8000 Add wdb to debugger list in breakpoint cmd. · python-mode/python-mode@d8f04f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit d8f04f9

Browse files
committed
Add wdb to debugger list in breakpoint cmd.
1 parent 9c8468e commit d8f04f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoload/pymode/breakpoint.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fun! pymode#breakpoint#init() "{{{
1717

1818
from imp import find_module
1919

20-
for module in ('pudb', 'ipdb'):
20+
for module in ('wdb', 'pudb', 'ipdb'):
2121
try:
2222
find_module(module)
2323
vim.command('let g:pymode_breakpoint_cmd = "import %s; %s.set_trace() # XXX BREAKPOINT"' % (module, module))

0 commit comments

Comments
 (0)
0