Skip to content

Commit dd33ca3

Browse files
committed
Fix loading of after/indent/python.vim
Since python3 compatibility python indent is no more loaded correctly This change fix it
1 parent 2149076 commit dd33ca3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

after/indent/python.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
if pymode#Default('g:pymode', 1) || !g:pymode
1+
if !g:pymode
22
finish
33
endif
44

5-
if pymode#Default('b:pymode_indent', 1) || !g:pymode_indent
5+
if !g:pymode_indent
66
finish
77
endif
88

0 commit comments

Comments
 (0)