We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9a6e6 commit 460e1e5Copy full SHA for 460e1e5
plugin/pymode.vim
@@ -151,13 +151,13 @@ endif
151
152
if !pymode#Default("g:pymode_breakpoint", 1) || g:pymode_breakpoint
153
154
- if !pymode#Default("g:pymode_breakpoint_cmd", "import ipdb; ipdb.set_trace() ### XXX BREAKPOINT") && has("python")
+ if !pymode#Default("g:pymode_breakpoint_cmd", "import ipdb; ipdb.set_trace() # XXX BREAKPOINT") && has("python")
155
python << EOF
156
from imp import find_module
157
try:
158
find_module('ipdb')
159
except ImportError:
160
- vim.command('let g:pymode_breakpoint_cmd = "import pdb; pdb.set_trace() ### XXX BREAKPOINT"')
+ vim.command('let g:pymode_breakpoint_cmd = "import pdb; pdb.set_trace() # XXX BREAKPOINT"')
161
EOF
162
endif
163
0 commit comments