From 686c6d6547ac5413274250635eeab9876ecc003d Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 20 May 2016 16:17:33 -0700 Subject: [PATCH] Add version check for gutentags --- vim/rc/plugins.rc.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vim/rc/plugins.rc.vim b/vim/rc/plugins.rc.vim index c84da91..98f4b25 100644 --- a/vim/rc/plugins.rc.vim +++ b/vim/rc/plugins.rc.vim @@ -103,7 +103,9 @@ Plug 'majutsushi/tagbar' nnoremap :TagbarToggle let g:tagbar_autofocus = 1 " Autofocus tagbar " }} tagbar -Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files +if (v:version > 703) + Plug 'ludovicchabant/vim-gutentags' " Auto generate tags files +end Plug 'tpope/vim-surround' Plug 'tomtom/tcomment_vim' " , { 'on': ['TComment', 'TCommentBlock'] } " tcomment_vim {{