标签: vim vim-plugin syntastic
Vim syntastic插件会弹出错误和警告位置列表,并且不必要地消耗比列表所需的更多屏幕空间:
如何配置合成以打开只有足够的行显示列表的位置列表窗口?
答案 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