diff options
author | Naoya Inada <naoina@kuune.org> | 2017-03-13 20:09:49 +0900 |
---|---|---|
committer | Naoya Inada <naoina@kuune.org> | 2017-03-13 20:09:49 +0900 |
commit | e969d97843ca6a8f2beddf05f45d2733c0589a52 (patch) | |
tree | e214c22f04a7da1dc5fa7765eea354ee7d0c0c31 /ale_linters/coffee | |
parent | c2ceb9e085c8dd849dee57bdd91b2500fa7b528f (diff) | |
download | ale-e969d97843ca6a8f2beddf05f45d2733c0589a52.zip |
Fix pattern of output for coffeelint
Diffstat (limited to 'ale_linters/coffee')
-rw-r--r-- | ale_linters/coffee/coffeelint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/coffee/coffeelint.vim b/ale_linters/coffee/coffeelint.vim index a7960b98..e32f7b79 100644 --- a/ale_linters/coffee/coffeelint.vim +++ b/ale_linters/coffee/coffeelint.vim @@ -21,7 +21,7 @@ function! ale_linters#coffee#coffeelint#Handle(buffer, lines) abort " stdin,14,,error,Throwing strings is forbidden " " Note that we currently ignore lineNumberEnd for multiline errors - let l:pattern = 'stdin,\(\d\+\),\(\d*\),\(.\+\),\(.\+\)' + let l:pattern = 'stdin,\(\d\+\),\(\d*\),\(.\{-1,}\),\(.\+\)' let l:output = [] for l:line in a:lines |