# HG changeset patch # User Ludovic Chabant # Date 1428642679 25200 # Node ID ea77809122967af771aa5367f773048b73b501e4 # Parent 70423c2202c5ed135c6001c03b6f485fd365cb54 Check for Vim 7.4 since bug reports indicate Gutentags may not work in 7.3. diff -r 70423c2202c5 -r ea7780912296 plugin/gutentags.vim --- 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