1

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

这是我要匹配的 lint 输出行

"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

它停止工作。

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

任何帮助表示赞赏。

4

1 回答 1

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'
于 2013-03-08T14:24:42.793 回答