mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-12 16:06:39 -05:00
Fix MatchTagAlways which wasn't being loaded on some systems because has('python') no longer works there
This commit is contained in:
parent
820faaf5b3
commit
a87269ff06
1 changed files with 1 additions and 1 deletions
2
vimrc
2
vimrc
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue