Make one of the sign tests work in all locales

This commit is contained in:
w0rp 2017-10-25 22:35:21 +01:00
parent 25d2af0b25
commit 4af7219078
1 changed files with 1 additions and 2 deletions

View File

@ -20,8 +20,7 @@ Before:
let l:actual_sign_list = []
for l:line in split(l:output, "\n")
let l:match = matchlist(l:line, '\m\s*line=\(\d\+\).*name=\(ALE[a-zA-Z]\+\)')
let l:match = matchlist(l:line, '\v^.*\=(\d+).*\=\d+.*\=(ALE[a-zA-Z]+Sign)')
if len(l:match) > 0
call add(l:actual_sign_list, [l:match[1], l:match[2]])