Questions tagged «syntastic»

0
除非特别调用,否则将syntastic配置为不显示错误面板
如何使用(neo)vim配置syntastic以不启动错误面板(除非特别调用这样做)我真的很喜欢旁边的箭头表示我发生了错误并且有用的状态栏消息告诉我这是什么错误但是我不喜欢大错误面板。目前我只是在每次保存时手动关闭它:lclose我当前的.nvimrc " syntastic options "set statusline+=%#warningmsg# "set statusline+=%{SyntasticStatuslineFlag()} "set statusline+=%* map <C-e> :lclose<CR> "turn off error panel let g:syntastic_always_populate_loc_list = 1 let g:syntastic_auto_loc_list = 1 let g:syntastic_check_on_open = 1 let g:syntastic_check_on_wq = 0
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.