Mercurial > vim-gutentags
changeset 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 | 70423c2202c5 |
children | fa250d179090 |
files | plugin/gutentags.vim |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
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