From 5acba55275a695363345fb8c5bdaf943fef6360c Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Thu, 28 Mar 2019 08:36:39 -0700 Subject: [PATCH] Discover the universal-ctags binary At least in the openSUSE package for `universal-ctags` it is not installed as `ctags` --- autoload/tagbar.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 4d5a1f1..e45168f 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -398,6 +398,7 @@ function! s:CheckForExCtags(silent) abort let ctagsbins += ['ctags'] let ctagsbins += ['ctags.exe'] let ctagsbins += ['tags'] + let ctagsbins += ['universal-ctags'] for ctags in ctagsbins if executable(ctags) let g:tagbar_ctags_bin = ctags