I want to run my application under vim using make , and I want the quickfix window quickfix display my errors.
So, I have this format, which starts with Error: , and then filename, row and column, separated by : and then on the next line there will be a multiline message without special formatting, then the message will end with ErrorEnd .
So here is an example:
Error: /somefile/something/something.c:12:123 SOME MESSAGE ANOTHER HELPFUL MESSAGE ANOTHER MESSAGE ErrorEnd
I kind of lost in the documentation how to make it fit these lines. Everything seems so confusing, and the examples are not like these. I know how to make it match the first line, but I don’t know how to make it match the following lines as an error message. So the question is what will be the errorformat string that could parse all this.
source share