diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:32:37 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:32:37 +0200 |
commit | 55287efdf7679a4ceda261b03bce5172d6692640 (patch) | |
tree | 9c1e17fadca966ad94a6dc868e2c935ca507897c /ftplugin/elm | |
parent | d757bfd643cc73c2d495355c153ed0257f5d5b47 (diff) | |
download | vim-polyglot-55287efdf7679a4ceda261b03bce5172d6692640.tar.gz vim-polyglot-55287efdf7679a4ceda261b03bce5172d6692640.zip |
Change elm provider, closes #475
Diffstat (limited to 'ftplugin/elm')
-rw-r--r-- | ftplugin/elm/tagbar.vim | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/ftplugin/elm/tagbar.vim b/ftplugin/elm/tagbar.vim deleted file mode 100644 index 4c0e3731..00000000 --- a/ftplugin/elm/tagbar.vim +++ /dev/null @@ -1,24 +0,0 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elm') == -1 - -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() - -endif |