1
0
mirror of https://github.com/gryf/tagbar.git synced 2025-12-18 12:00:23 +01:00

Test for Vim >= 7.0

This commit is contained in:
Jan Larres
2011-05-19 01:42:18 +12:00
parent 8d1ba9fc11
commit 5b819914b9

View File

@@ -25,6 +25,12 @@ endif
" Initialization {{{1
" Basic init {{{2
if v:version < 700
echomsg 'Tagbar: Vim version is too old, Tagbar requires at least 7.0'
finish
endif
if !exists('g:tagbar_ctags_bin')
if executable('ctags-exuberant')
let g:tagbar_ctags_bin = 'ctags-exuberant'