设置vim errorformat的问题

时间:2013-03-07 18:55:17

标签: vim errorformat

我的编译器和lint工具以两种不同的格式输出错误。我决定逐步设置我的errorformat,首先是lint,然后为编译器添加一个模式。

这是Iint尝试匹配的输出线

"C:\Documents and Settings\user\Projects\MyProject\trunk\src\myfile.c",126  Info 754: local structure member 'myStructMember' (line 126, file C:\Documents and Settings\user\Projects\MyProject\trunk\src\myfile.c) not referenced

我的第一次尝试是

set errorformat=\"%f\"\\,%l\ \ %t%s

它有效。

然后我尝试将其设置如下

set errorformat=\"%f\"\\,%l\ \ %t\ %s

它停止了工作。

有人知道这是什么问题吗? 我确实阅读了文档,但它没有帮助。

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

" Match the filename and line number
let &errorformat = '"%f"\,%l'

" Match white space, first character of error type, the rest of the characters
" of the error type, and white space again.
let &errorformat .= '%*\s%t%*\w%*\s'

"Match error number, whitespace and error message.
let &errorformat .= '%n:%*\s%m'