syntastic/autoload/syntastic.vim
Konstantin Stepanov 74f3bb0a93 balloons support
2011-05-03 02:21:16 +03:00

9 lines
207 B
VimL

if !has('balloon_eval')
finish
endif
function! syntastic#ErrorBalloonExpr()
if !exists('b:syntastic_balloons') | return '' | endif
return get(b:syntastic_balloons, v:beval_lnum, '')
endfunction