Disable MatchTagAlways if python isn't available

This commit is contained in:
Kevin MacMartin 2024-08-18 23:47:56 -04:00
parent 9753ae514a
commit 1bd7ee194b

View file

@ -55,6 +55,11 @@ if !g:enablecompletion
call add(g:pathogen_disabled, "vim-snippets") call add(g:pathogen_disabled, "vim-snippets")
endif endif
"don't load MatchTagAlways if python isn't available
if !has('python3')
call add(g:pathogen_disabled, 'MatchTagAlways')
endif
"use pathogen to load plugins that haven't been disabled "use pathogen to load plugins that haven't been disabled
runtime bundle/vim-pathogen/autoload/pathogen.vim runtime bundle/vim-pathogen/autoload/pathogen.vim