From b7890e27caf86bd2310c38a5f7b6be95c3f140bd Mon Sep 17 00:00:00 2001 From: Jolan Date: Tue, 27 Jun 2017 15:15:46 +0200 Subject: [PATCH] compatibility with phpctags --- autoload/tagbar.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index dc927d6..05a6f97 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -1245,6 +1245,11 @@ function! s:CheckExCtagsVersion(output) abort return 1 endif + if a:output =~ 'Exuberant Ctags compatiable PHP enhancement' + call s:debug("Found phpctags, assuming compatibility") + return 1 + endif + if a:output =~ 'Exuberant Ctags Development' call s:debug("Found development version, assuming compatibility") return 1