From 7c230489dd58711c3fcc019d9680fded385698f6 Mon Sep 17 00:00:00 2001 From: yushyin Date: Sun, 27 Nov 2016 14:14:40 +0100 Subject: Vim: Delete unused plugin tagbar --- vim/ftplugin/haskell.vim | 32 -------------------------------- 1 file changed, 32 deletions(-) (limited to 'vim/ftplugin/haskell.vim') diff --git a/vim/ftplugin/haskell.vim b/vim/ftplugin/haskell.vim index c32ad66..a3ed140 100644 --- a/vim/ftplugin/haskell.vim +++ b/vim/ftplugin/haskell.vim @@ -1,35 +1,3 @@ setl tags+=codex.tags setl omnifunc=necoghc#omnifunc setl ts=8 sts=4 sw=4 et sr - -let g:tagbar_type_haskell = { - \ 'ctagsbin' : 'hasktags', - \ 'ctagsargs' : '-x -c -o-', - \ 'kinds' : [ - \ 'm:modules:0:1', - \ 'd:data: 0:1', - \ 'd_gadt: data gadt:0:1', - \ 't:type names:0:1', - \ 'nt:new types:0:1', - \ 'c:classes:0:1', - \ 'cons:constructors:1:1', - \ 'c_gadt:constructor gadt:1:1', - \ 'c_a:constructor accessors:1:1', - \ 'ft:function types:1:1', - \ 'fi:function implementations:0:1', - \ 'o:others:0:1' - \ ], - \ 'sro' : '.', - \ 'kind2scope' : { - \ 'm' : 'module', - \ 'c' : 'class', - \ 'd' : 'data', - \ 't' : 'type' - \ }, - \ 'scope2kind' : { - \ 'module' : 'm', - \ 'class' : 'c', - \ 'data' : 'd', - \ 'type' : 't' - \ } -\ } -- cgit v1.2.3-24-g4f1b