我不知道如何区分* quickfix和位置列表,但代替检查位置列表是否显示,我建议只是关闭它,并检查显示的窗口数是否已更改:
原文链接:/bash/387624.htmlfunction! ToggleErrors() let old_last_winnr = winnr('$') lclose if old_last_winnr == winnr('$') " Nothing was closed,open syntastic error location panel Errors endif endfunction
*如果您的解决方案将尝试lclose,如果任何活动检查使用buftype quickfix显示的缓冲区:
function! ToggleErrors() if empty(filter(tabpagebuflist(),'getbufvar(v:val,"&buftype") is# "quickfix"')) " No location/quickfix list shown,open syntastic error location panel Errors else lclose endif endfunction
。请注意,lclose不会关闭quickfix列表。
要使用Ctrl-e切换错误面板,您可以使用以下映射
nnoremap <silent> <C-e> :<C-u>call ToggleErrors()<CR>