Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
7answers
2k views

Vim errorformat for Visual Studio

I want to use Vim's quickfix features with the output from Visual Studio's devenv build process or msbuild. I've created a batch file called build.bat which executes the devenv build like this: ...
4
votes
1answer
295 views

How to put cscope output in Vim quickfix window?

I want to redirect output from cscope to Vim quickfix window. The glue part is easy enough, but I currently stuck at errorformat. Here's an example from cscope output (cscope -L -1 bar): Format: ...
4
votes
1answer
128 views

Vim errorformat: using %D to change directory

I'm struggling to find the right Vim errorformat to use when the current directory is a sibling of the directory with the file with the error. For example: errorformat errorformat/model ...
3
votes
4answers
325 views

Vim errorformat and jslint

I am trying to get makeprg and errorformat working with VIM and jslint, and can't seem to get the error format right for the life of me... I am using the nodejs version of jslint which produces ...
2
votes
1answer
619 views

Vim errorformat

I read the docs, but got even more confused. I have the following error generated by the compiler: rot; ^ "cpp\c1.cpp", line 13: error(114): identifier "rot" is ...
2
votes
2answers
508 views

Vim errorformat / efm for PL/SQL

Im trying to get the standard vim :clist, :cope functionality working with vim. Specifically, I'm trying (and failing) to capture the filename from the compiler output. I have the PL/SQL code ...
1
vote
1answer
142 views

jslint vim errorformat

I have the jslint installed with npm on my system. It produces error messages in the following format: 1 1,9: Missing name in function statement. function() { 2 2,11: Use '===' to compare ...
1
vote
3answers
226 views

What's the error type for in errorformat (for Vim's quickfix list)?

I'm unsure about the %t format specifier in Vim's quickfix list, how does it affect the behavior/display of the quickfix buffer? I tried to find it out with the following test file: $ cat test.out ...
0
votes
3answers
232 views

Vim: Error format matches everything

I am trying to match the following error with efm: AssertionError: 1 == 2 at /home/strager/projects/blah/blah.js:13:37 The error message can be anything (i.e. it doesn't always match the ...