Errorformat for icc7
From Vim Tips Wiki
Tip 518 • Previous Tip • Next Tip
Created: July 25, 2003 Complexity: basic Author: Anon Minimum version: 5.7 Karma: 11/5 Imported from: Tip#518
Vim's errorformat option can be combined with the :make command to reduce development time (this is part of Vim's 'quickfix' capability). This option allows Vim to parse the output of a compiler in order to bring up a list of errors and warnings that you can jump to. But, Vim will not be able to parse the output of every compiler by default, so you need to tell it how.
This is an errorformat for the Intel icc7 compiler:
set errorformat=%E%f(%l):\ %m,%-C,%-C%p,%Z
[edit] References
[edit] Comments
Categories: VimTip | C | Compiler
