use pymode even for python3

pymode works for python 3 (https://github.com/klen/python-mode/issues/197).  So far, this update (allowing it when python3 is present) seems to work fine for me.
This commit is contained in:
toejough 2015-10-09 11:44:16 -04:00
parent d617e75acc
commit 61c476b30b

2
.vimrc
View File

@ -603,7 +603,7 @@
" PyMode { " PyMode {
" Disable if python support not present " Disable if python support not present
if !has('python') if !has('python') && !has('python3')
let g:pymode = 0 let g:pymode = 0
endif endif