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

Commit

Permalink
caught error output w/o line and column
Browse files Browse the repository at this point in the history
- like 'Syntax error at end of input'
  • Loading branch information
Simon Stier committed Jan 6, 2019
1 parent 0d25f4f commit 3bd330a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion syntax_checkers/puppet/puppet.vim
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ function! SyntaxCheckers_puppet_puppet_GetLocList() dict
\ '%-GError: Try ''puppet help parser validate'' for usage,' .
\ '%A%t%*[a-zA-Z]: %m at %f:%l:%c,' .
\ '%A%t%*[a-zA-Z]: %m at %f:%l,'.
\ '%A%t%*[a-zA-Z]: Could not parse for environment production: %m (file: %f\, line: %l\, column: %c)'
\ '%A%t%*[a-zA-Z]: Could not parse for environment production: %m (file: %f\, line: %l\, column: %c),' .
\ '%A%t%*[a-zA-Z]: Could not parse for environment production: %m (file: %f)'

return SyntasticMake({
\ 'makeprg': makeprg,
Expand Down

0 comments on commit 3bd330a

Please sign in to comment.