Update sign regex for LANG = it_IT.UTF-8

I've noticed that signs weren't unplaced and, learning that this was an issue depending on locale and :sign place, I've fixed the regular expression used to match those messages in my locale (it_IT.UTF-8).
This commit is contained in:
Manuel Unno Vio 2017-03-02 12:17:43 +01:00 committed by GitHub
parent 18508f7453
commit 79f18e7d87

View File

@ -35,7 +35,9 @@ function! ale#sign#ParseSigns(line_list) abort
" строка=1 id=1000001 имя=ALEErrorSign
" 行=1 識別子=1000001 名前=ALEWarningSign
" línea=12 id=1000001 nombre=ALEWarningSign
let l:pattern = '^.*=\d*\s\+.*=\(\d\+\)\s\+.*=ALE\(Warning\|Error\|Dummy\)Sign'
" riga=1 id=1000001, nome=ALEWarningSign
let l:pattern = '^.*=\d*\s\+.*=\(\d\+\)\,\?\s\+.*=ALE\(Warning\|Error\|Dummy\)Sign'
let l:id_list = []