diff --git a/autoload/tagbar.vim b/autoload/tagbar.vim index 9ffc08f..5371e54 100644 --- a/autoload/tagbar.vim +++ b/autoload/tagbar.vim @@ -1273,7 +1273,9 @@ function! s:GetSupportedFiletypes() abort let types = split(ctags_output, '\n\+') for type in types - let s:ctags_types[tolower(type)] = 1 + if match(type, '\[disabled\]') == -1 + let s:ctags_types[tolower(type)] = 1 + endif endfor let s:checked_ctags_types = 1