我想使用make
在vim下运行我的应用,我希望quickfix
窗口显示我的错误。
所以我有这种格式,首先以Error:
开头,然后用:
分隔文件名,行和列,然后在下一行,这将是一个没有特殊格式的多行消息,然后消息将以ErrorEnd
结束。
所以这是一个例子:
Error: /somefile/something/something.c:12:123
SOME MESSAGE
ANOTHER HELPFUL MESSAGE
ANOTHER MESSAGE
ErrorEnd
我在文档中迷失了如何使它与这些行匹配。一切看起来都很混乱,例子不像这个。我知道如何使它与第一行匹配,但不知道如何使它与下一行匹配作为错误消息。所以问题是什么是一个可以解析它的errorformat字符串。
答案 0 :(得分:4)
从vim errorformat帮助页面:
Multi-line messages *errorformat-multi-line*
It is possible to read the output of programs that produce multi-line
messages, i.e. error strings that consume more than one line. Possible
prefixes are:
%E start of a multi-line error message
%W start of a multi-line warning message
%I start of a multi-line informational message
%A start of a multi-line message (unspecified type)
%> for next line start with current pattern again |efm-%>|
%C continuation of a multi-line message
%Z end of a multi-line message
These can be used with '+' and '-', see |efm-ignore| below.
Using "\n" in the pattern won't work to match multi-line messages.
Example: Your compiler happens to write out errors in the following format
(leading line numbers not being part of the actual output):
1 Error 275
2 line 42
3 column 3
4 ' ' expected after '--'
The appropriate error format string has to look like this:
:set efm=%EError\ %n,%Cline\ %l,%Ccolumn\ %c,%Z%m
编辑:啊,你的意思是多行错误。对。那更难。
答案 1 :(得分:3)
你是对的,解析quickfix的多行错误信息很困难。我甚至不确定是否可以在个别错误的块中解析错误。
我用于笨拙的错误输出的解决方法是将转换步骤(通常使用sed
)附加到'makeprg'
,将多行错误转换为传统的单行错误错误消息;
Error: /somefile/something/something.c:12:123 SOME MESSAGE
Error: /somefile/something/something.c:12:123 ANOTHER HELPFUL MESSAGE
Error: /somefile/something/something.c:12:123 ANOTHER MESSAGE
在你的情况下。
答案 2 :(得分:1)
您可以使用%+
中所述的:help efm-ignore
前缀以及多行错误格式说明符%E
,%C
来捕获错误消息中的多行文本},%Z
等,:help errorformat-multi-line
描述。在您的具体示例中,以下似乎有效:
let &l:efm='%EError: %f:%l:%c,%-ZErrorEnd,%+C%.%#'
请注意与该行上任何文本匹配的%+C
项,并将其添加到错误消息中。另请注意我必须在此项之前放置%-Z
项才能使用它,因为在解析该行时将使用第一个匹配的errorformat项。