summaryrefslogtreecommitdiffstats
path: root/ftplugin/elm
diff options
context:
space:
mode:
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