1 function! Powerline#Functions#syntastic#GetErrors(line_symbol) " {{{
2 if ! exists('g:syntastic_stl_format')
3 " Syntastic hasn't been loaded yet
7 " Temporarily change syntastic output format
8 let old_stl_format = g:syntastic_stl_format
9 let g:syntastic_stl_format = '╱╱╱%E{ ERRORS (%e) '. a:line_symbol .' %fe }%W{ WARNINGS (%w) '. a:line_symbol .' %fw }╱╱╱'
11 let ret = SyntasticStatuslineFlag()
13 let g:syntastic_stl_format = old_stl_format