Mercurial > vim-gutentags
comparison plugin/gutentags.vim @ 92:6bbed9e4c01e
Using `:!start /b` actually requires Vim 7.4.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 17 Feb 2016 23:29:49 -0800 |
parents | 8bf96f9f649c |
children | 2838af9ff980 a66d90fd758b |
comparison
equal
deleted
inserted
replaced
91:54355724204b | 92:6bbed9e4c01e |
---|---|
2 " Maintainer: Ludovic Chabant <http://ludovic.chabant.com> | 2 " Maintainer: Ludovic Chabant <http://ludovic.chabant.com> |
3 " Version: 0.0.1 | 3 " Version: 0.0.1 |
4 | 4 |
5 " Globals {{{ | 5 " Globals {{{ |
6 | 6 |
7 if v:version < 700 | 7 if v:version < 704 |
8 echoerr "gutentags: this plugin requires vim >= 7.0." | 8 echoerr "gutentags: this plugin requires vim >= 7.4." |
9 finish | 9 finish |
10 endif | 10 endif |
11 | 11 |
12 if !exists('g:gutentags_debug') | 12 if !exists('g:gutentags_debug') |
13 let g:gutentags_debug = 0 | 13 let g:gutentags_debug = 0 |