Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很高兴为 vim 使用Syntastic插件。窗口底部的“Quickfix 列表”(从技术上讲,它是另一个 vim 窗口)占用空间,我并没有真正使用它。通过禁用快速修复列表
let g:syntastic_always_populate_loc_list = 0 let g:syntastic_auto_loc_list = 0
在~/.vimrc不起作用。需要设置哪些选项来禁用快速修复列表?
~/.vimrc
创建 MWE 需要一些时间,但几乎总是有助于识别错误。在这种情况下,两个包进行了语法检查,即
Bundle 'scrooloose/syntastic' Bundle 'andviro/flake8-vim'
正是它flake8-vim引入了快速修复列表。禁用它显然可以解决问题。
flake8-vim