From 1a77a1e9c6060d06421e56323f0b142e2c9b0063 Mon Sep 17 00:00:00 2001 From: Jan Larres Date: Sat, 7 May 2011 18:06:29 +1200 Subject: [PATCH] Add additional ctags binary name --- plugin/tagbar.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/tagbar.vim b/plugin/tagbar.vim index 9720ea5..ccc168c 100644 --- a/plugin/tagbar.vim +++ b/plugin/tagbar.vim @@ -28,6 +28,8 @@ endif if !exists('g:tagbar_ctags_bin') if executable('ctags-exuberant') let g:tagbar_ctags_bin = 'ctags-exuberant' + elseif executable('exuberant-ctags') + let g:tagbar_ctags_bin = 'exuberant-ctags' elseif executable('exctags') let g:tagbar_ctags_bin = 'exctags' elseif executable('ctags')