vim-polyglot/ftplugin/elm/tagbar.vim
2019-03-04 09:28:35 +01:00

25 lines
574 B
VimL

if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'elm') != -1
finish
endif
if !executable('ctags')
finish
elseif globpath(&runtimepath, 'plugin/tagbar.vim') ==? ''
finish
endif
function! s:SetTagbar()
if !exists('g:tagbar_type_elm')
let g:tagbar_type_elm = {
\ 'ctagstype' : 'elm',
\ 'kinds' : [
\ 'c:constants',
\ 'f:functions',
\ 'p:ports'
\ ]
\ }
endif
endfunction
call s:SetTagbar()