如何限制Vim Syntastic位置列表窗口的大小

时间:2017-05-17 17:08:08

标签: vim vim-plugin syntastic

Vim syntastic插件会弹出错误和警告位置列表,并且不必要地消耗比列表所需的更多屏幕空间:

enter image description here

如何配置合成以打开只有足够的行显示列表的位置列表窗口?

1 个答案:

答案 0 :(得分:6)

感谢lcd047指出答案。我将以下内容添加到我的vimrc中并且有效:

" see :h syntastic-loclist-callback
function! SyntasticCheckHook(errors)
    if !empty(a:errors)
        let g:syntastic_loc_list_height = min([len(a:errors), 10])
    endif
endfunction