summaryrefslogtreecommitdiffstats
path: root/ftplugin/elm
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2020-04-25 21:32:37 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2020-04-25 21:32:37 +0200
commit55287efdf7679a4ceda261b03bce5172d6692640 (patch)
tree9c1e17fadca966ad94a6dc868e2c935ca507897c /ftplugin/elm
parentd757bfd643cc73c2d495355c153ed0257f5d5b47 (diff)
downloadvim-polyglot-55287efdf7679a4ceda261b03bce5172d6692640.tar.gz
vim-polyglot-55287efdf7679a4ceda261b03bce5172d6692640.zip
Change elm provider, closes #475
Diffstat (limited to 'ftplugin/elm')
-rw-r--r--ftplugin/elm/tagbar.vim24
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