From a87269ff06bb07e7643c80b7d8ce88b6cd2a6a71 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Thu, 27 Feb 2020 17:29:44 -0500 Subject: [PATCH] Fix MatchTagAlways which wasn't being loaded on some systems because has('python') no longer works there --- vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vimrc b/vimrc index b305734..a33d8ac 100644 --- a/vimrc +++ b/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