From fe337504f2fb3ded76326b1e3d4d02787a27d853 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Wed, 5 Jun 2013 10:50:57 -0500 Subject: Aand that's all the plugins. --- vim/autoload/syntastic.vim | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 vim/autoload/syntastic.vim (limited to 'vim/autoload/syntastic.vim') diff --git a/vim/autoload/syntastic.vim b/vim/autoload/syntastic.vim deleted file mode 100644 index a477736..0000000 --- a/vim/autoload/syntastic.vim +++ /dev/null @@ -1,24 +0,0 @@ - -function! syntastic#ErrorBalloonExpr() - if !exists('b:syntastic_balloons') | return '' | endif - return get(b:syntastic_balloons, v:beval_lnum, '') -endfunction - -function! syntastic#HighlightErrors(errors, termfunc, ...) - call clearmatches() - let forcecb = a:0 && a:1 - for item in a:errors - let group = item['type'] == 'E' ? 'SpellBad' : 'SpellCap' - if item['col'] && !forcecb - let lastcol = col([item['lnum'], '$']) - let lcol = min([lastcol, item['col']]) - call matchadd(group, '\%'.item['lnum'].'l\%'.lcol.'c') - else - let term = a:termfunc(item) - if len(term) > 0 - call matchadd(group, '\%' . item['lnum'] . 'l' . term) - endif - endif - endfor -endfunction - -- cgit