Fix MatchTagAlways which wasn't being loaded on some systems because has('python') no longer works there

This commit is contained in:
Kevin MacMartin 2020-02-27 17:29:44 -05:00
parent 820faaf5b3
commit a87269ff06

2
vimrc
View file

@ -62,7 +62,7 @@
call add(pathogen_disabled, 'vim-fixkey')
endif
if !has('python')
if !has('python') && !has('python3')
call add(pathogen_disabled, 'MatchTagAlways')
endif