Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 91ff65a

Browse files
Simon StierSimon Stier
Simon Stier
authored and
Simon Stier
committed
caught error output w/o line and column
- like 'Syntax error at end of input'
1 parent 7274363 commit 91ff65a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

syntax_checkers/puppet/puppet.vim

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ function! SyntaxCheckers_puppet_puppet_GetLocList() dict
3131
\ '%-GError: Try ''puppet help parser validate'' for usage,' .
3232
\ '%A%t%*[a-zA-Z]: %m at %f:%l:%c,' .
3333
\ '%A%t%*[a-zA-Z]: %m at %f:%l,'.
34-
\ '%A%t%*[a-zA-Z]: Could not parse for environment production: %m (file: %f\, line: %l\, column: %c)'
34+
\ '%A%t%*[a-zA-Z]: Could not parse for environment production: %m (file: %f\, line: %l\, column: %c),' .
35+
\ '%A%t%*[a-zA-Z]: Could not parse for environment production: %m (file: %f)'
3536

3637
return SyntasticMake({
3738
\ 'makeprg': makeprg,

0 commit comments

Comments
 (0)