From 225fcaa3ce1233c23f43b5125009a96767f13353 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Sat, 24 Aug 2013 18:38:04 +1200 Subject: [PATCH] Log ctags version --- autoload/tagbar.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index b8dd6d9..9577cc5 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -1104,6 +1104,8 @@ function! s:CheckExCtagsVersion(output) abort call s:LogDebugMessage('Checking Exuberant Ctags version') if a:output =~ 'Exuberant Ctags Development' + call s:LogDebugMessage("Found development version, " . + \ "assuming compatibility") return 1 endif @@ -1111,6 +1113,9 @@ function! s:CheckExCtagsVersion(output) abort let major = matchlist[1] let minor = matchlist[2] + call s:LogDebugMessage("Ctags version: " . + \ "major='" . major . "', minor='" . minor . "'") + return major >= 6 || (major == 5 && minor >= 5) endfunction