summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2020-12-28 15:22:25 +0900
committerGitHub <noreply@github.com>2020-12-28 15:22:25 +0900
commit7fca451cf9a3068efe5e93fcc4b5494d939245fb (patch)
treeaf8dee079820a561a140261c5c3c57e930866463 /ale_linters
parentf996ede5999c99b1b3e3cecc02dbd06cb286d3ff (diff)
parent0a2ad516d4c04a408f6bb0ee26640bf6cd531651 (diff)
downloadale-7fca451cf9a3068efe5e93fcc4b5494d939245fb.zip
Merge pull request #3467 from fwy/bugfix-checkstyleRegexpNvimWin32
Fix checkstyle regexp pattern to work correctly in NVim on Windows
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/java/checkstyle.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/java/checkstyle.vim b/ale_linters/java/checkstyle.vim
index ec7339d1..f00734e0 100644
--- a/ale_linters/java/checkstyle.vim
+++ b/ale_linters/java/checkstyle.vim
@@ -9,7 +9,7 @@ function! ale_linters#java#checkstyle#Handle(buffer, lines) abort
let l:output = []
" modern checkstyle versions
- let l:pattern = '\v\[(WARN|ERROR)\] [a-zA-Z]?:?[^:]+:(\d+):(\d+)?:? (.*) \[(.+)\]$'
+ let l:pattern = '\v\[(WARN|ERROR)\] [a-zA-Z]?:?[^:]+:(\d+):(\d+)?:? (.*) \[(.+)\]'
for l:match in ale#util#GetMatches(a:lines, l:pattern)
call add(l:output, {