Mercurial > vim-gutentags
diff plugin/gutentags.vim @ 50:ea7780912296
Check for Vim 7.4 since bug reports indicate Gutentags may not work in 7.3.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Thu, 09 Apr 2015 22:11:19 -0700 |
parents | c0f56e4d52bd |
children | fa250d179090 |
line wrap: on
line diff
--- a/plugin/gutentags.vim Thu Apr 09 22:00:37 2015 -0700 +++ b/plugin/gutentags.vim Thu Apr 09 22:11:19 2015 -0700 @@ -4,6 +4,11 @@ " Globals {{{ +if v:version < 704 + echoerr "gutentags: this plugin requires vim >= 7.4." + finish +endif + if !exists('g:gutentags_debug') let g:gutentags_debug = 0 endif