Vim:从QuickFix窗口中删除行号和色列


9

在我的vimrc中,我同时拥有set numberset colorcolumn=80,所以现在当我打开quickfix窗口时,我同时看到了行号和颜色列。有什么方法可以仅针对quickfix窗口禁用这些设置吗?(如果重要的话,我正在使用vim 7.3在OSX上)。

谢谢!


请注意,对于跳到您看到的错误,行号可能对cc <line-number>of 有用<line-number>G<enter>
Ciro Santilli新疆改造中心996ICU六四事件

Answers:


9

将以下内容放入~/.vim/ftplugin/qf.vim

setlocal nonumber
setlocal colorcolumn=

只要您启用了文件类型插件支持,就应该处理它。


完美地工作!谢谢。我对此一无所知,非常有用。
2012年

3

如果您不介意在行中多加一行~/.vimrc

au FileType qf setlocal nonumber colorcolumn=
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.