1
0
mirror of https://github.com/captn3m0/dotfiles.git synced 2024-09-19 12:56:58 +00:00
dotfiles/files/vim/.vim/bundle/vim-powerline/autoload/Powerline/Functions/syntastic.vim

17 lines
506 B
VimL
Raw Normal View History

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 " }}}