fix(lean-flycheck): make column optional when detecting error/messages
fix #194
This commit is contained in:
parent
d47412d201
commit
df588d6ba0
1 changed files with 2 additions and 2 deletions
|
@ -24,12 +24,12 @@
|
|||
:command ,(lean-flycheck-command)
|
||||
:error-patterns
|
||||
((error line-start "FLYCHECK_BEGIN ERROR\n"
|
||||
(file-name) ":" line ":" column ": error: "
|
||||
(file-name) ":" line ":" (? column ":") " error: "
|
||||
(minimal-match
|
||||
(message (one-or-more (one-or-more not-newline) "\n") ))
|
||||
"FLYCHECK_END" line-end)
|
||||
(warning line-start "FLYCHECK_BEGIN WARNING\n"
|
||||
(file-name) ":" line ":" column ": warning "
|
||||
(file-name) ":" line ":" (? column ":") " warning "
|
||||
(minimal-match
|
||||
(message (one-or-more (one-or-more not-newline) "\n") ))
|
||||
"FLYCHECK_END" line-end))
|
||||
|
|
Loading…
Reference in a new issue