1

我正在尝试为此编写 efm:

file: app/assets/javascripts/topbar.js
  line 17, col 3, Missing semicolon.
  line 19, col 19, 'is_mobile' was used before it was defined.
  line 21, col 1965, Expected '{' and instead saw 'check'.
  line 25, col 18, 'onScroll' was used before it was defined.
file: app/assets/javascripts/trends.js
  line 2, col 55, Missing semicolon.
  line 6, col 27, 'trendTypeSelected' was used before it was defined.
  line 7, col 32, Expected '===' and instead saw '=='.
JSHint check failed

但我想我错过了单独一行文件的概念。有人可以帮我解决这个问题吗?

这是我到目前为止所拥有的,但它不起作用:

%-Pfile:\ %f,line\ %l\,\ col\ %c\,\ %m

谢谢!

解决方案:

set efm=%-Pfile:\ %f,%*[\ ]line\ %l\\,\ col\ %c\\,\ %m,%-Q,%-GJSHint\ check\ failed
4

1 回答 1

1

Vim 提供%P,它将解析后的文件 ( %f) 推入堆栈,请参阅:help errorformat-separate-filename.

因此,对于您的错误输出,它将类似于%+Pfile: %f,...

于 2013-07-12T10:55:27.203 回答