I have a warning I can not easily remove from my build, every time i run ":make" from inside vim the quickfix takes me to some header file I don't care about. How can I prevent VIM from doing this and only showing me warnings and errors I do care about?
|
feedback
|
|
Check | |||
|
feedback
|
|
Learn from Bram himself. I can vaguely remember he talks about this somewhere in this video. He adds a filter to ignore some gnome warnings when he's compiling gvim. The video's well worth watching anyway. It's around the 30 minute mark. | ||||
|
feedback
|
|
A quick and dirty way would be to write a simple shell script that runs your make and greps out the warnings you don't want to see. Then have vim use this script instead of make (Add "set makeprg=yourscript.sh" to your .vimrc). | |||
|
feedback
|
|
As Luc Hermite said, it is possible to ignore warnings using When working with avr-gcc and C++ some annoying warnings like this
shows up, and it is likely to be result of a compiler fault. To avoid that this warnings being displayed on quickfix window I've add this to
The Maybe you could adapt these settings for your environment. | |||
|
feedback
|