Skip to content

Commit 43c052e

Browse files
committed
reverted v:false to 0 due to vim7 incompatibility
1 parent b848f62 commit 43c052e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

plugin/pymode.vim

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ call pymode#default('g:pymode_debug', 0)
1212
if !g:pymode || &cp || &diff
1313
" Update pymode status to prevent loading in other files and adding this
1414
" condition to all of them.
15-
let g:pymode = v:false
15+
let g:pymode = 0
1616
finish
1717
endif
1818

@@ -171,7 +171,7 @@ call pymode#default('g:pymode_breakpoint_cmd', '')
171171
" ROPE (refactoring, codeassist) {{{
172172
"
173173
" Rope support
174-
call pymode#default('g:pymode_rope', v:false)
174+
call pymode#default('g:pymode_rope', 0)
175175

176176
" System plugin variable
177177
if g:pymode_rope
@@ -305,12 +305,12 @@ elseif g:pymode_python == 'python3'
305305

306306
else
307307

308-
let g:pymode_doc = v:false
309-
let g:pymode_lint = v:false
310-
let g:pymode_path = v:false
311-
let g:pymode_rope = v:false
312-
let g:pymode_run = v:false
313-
let g:pymode_virtualenv = v:false
308+
let g:pymode_doc = 0
309+
let g:pymode_lint = 0
310+
let g:pymode_path = 0
311+
let g:pymode_rope = 0
312+
let g:pymode_run = 0
313+
let g:pymode_virtualenv = 0
314314

315315
command! -nargs=1 PymodePython echo <args>
316316

0 commit comments

Comments
 (0)