如何限制 Vim 合成位置列表 window 的大小

How to limit size of Vim Syntastic location list window

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

如何配置 syntastic 以打开位置列表 window,该列表只有足够的行来显示列表?

谢谢 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