Fix regexp pattern to work correctly in nvim and vim on windows and linux

This commit is contained in:
fwy 2020-11-26 15:29:23 -06:00
parent 681a6e371d
commit 0a2ad516d4
1 changed files with 1 additions and 1 deletions

View File

@ -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, {