aboutsummaryrefslogtreecommitdiff
path: root/vim/autoload/Powerline/Functions/syntastic.vim
diff options
context:
space:
mode:
authorBen Beltran <ben@freshout.us>2013-04-23 08:46:40 -0500
committerBen Beltran <ben@freshout.us>2013-04-23 08:46:40 -0500
commit5fab93bf6c853f0f37d30f9cb91a0760d3e006cb (patch)
treef1d69f20fa36b2998ee9774074c6f5d0b10a4776 /vim/autoload/Powerline/Functions/syntastic.vim
parent400b7c363c615dca6674a0381122d35f0949b6e6 (diff)
parent577b791c99b07471ec27e1f9c09e756a6f1da0cd (diff)
Merge branch 'master' of github.com:benbeltran/dotfiles
Diffstat (limited to 'vim/autoload/Powerline/Functions/syntastic.vim')
-rw-r--r--vim/autoload/Powerline/Functions/syntastic.vim16
1 files changed, 0 insertions, 16 deletions
diff --git a/vim/autoload/Powerline/Functions/syntastic.vim b/vim/autoload/Powerline/Functions/syntastic.vim
deleted file mode 100644
index e2c04fa..0000000
--- a/vim/autoload/Powerline/Functions/syntastic.vim
+++ /dev/null
@@ -1,16 +0,0 @@
-function! Powerline#Functions#syntastic#GetErrors(line_symbol) " {{{
- if ! exists('g:syntastic_stl_format')
- " Syntastic hasn't been loaded yet
- return ''
- endif
-
- " Temporarily change syntastic output format
- let old_stl_format = g:syntastic_stl_format
- let g:syntastic_stl_format = '╱╱╱%E{ ERRORS (%e) '. a:line_symbol .' %fe }%W{ WARNINGS (%w) '. a:line_symbol .' %fw }╱╱╱'
-
- let ret = SyntasticStatuslineFlag()
-
- let g:syntastic_stl_format = old_stl_format
-
- return ret
-endfunction " }}}