From fef95d71679170d99a2bb1c05fbaaf35586782d8 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Sat, 15 Oct 2011 18:40:27 +1300 Subject: [PATCH] Accept ctags development versions --- autoload/tagbar.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 5f93c8c..2b27b83 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -934,6 +934,10 @@ endfunction " s:CheckExCtagsVersion() {{{2 function! s:CheckExCtagsVersion(output) + if a:output =~ 'Exuberant Ctags Development' + return 1 + endif + let matchlist = matchlist(a:output, '\vExuberant Ctags (\d+)\.(\d+)') let major = matchlist[1] let minor = matchlist[2]