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')