Skip to content

Commit 4c8a2d5

Browse files
author
Michael Cowgill
committed
changing the approach from the wildcard match to the true specified multi-line match for exunit and shouldi exeception messages
1 parent e0038cf commit 4c8a2d5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

compiler/exunit.vim

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ endif
1414

1515
let s:cpo_save = &cpo
1616
set cpo-=C
17-
1817
CompilerSet makeprg=mix\ test
1918
CompilerSet errorformat=
20-
\**\ (%\\w%\\+)\ %f:%l:\ %m,
21-
\%+Z\ \ \ \ \ \ \ %f:%l,
22-
\%+G%>\ \ \ \ \ \ \ (%\\w%\\+)\ %f:%l:\ %m,
2319
\%E\ \ %n)\ %m,
20+
\%+G\ \ \ \ \ **\ %m,
21+
\%+G\ \ \ \ \ stacktrace:,
2422
\%C\ \ \ \ \ %f:%l,
25-
\%+G%.%#
23+
\%+G\ \ \ \ \ \ \ (%\\w%\\+)\ %f:%l:\ %m,
24+
\%+G\ \ \ \ \ \ \ %f:%l:\ %.%#,
25+
\**\ (%\\w%\\+)\ %f:%l:\ %m
2626

2727
let &cpo = s:cpo_save
2828
unlet s:cpo_save

0 commit comments

Comments
 (0)