Merge pull request #224 from cympfh/master

Fix: sign pattern
This commit is contained in:
w0rp 2016-12-16 09:33:52 +00:00 committed by GitHub
commit 7e6d5292f7
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ function! ale#sign#FindCurrentSigns(buffer) abort
" Matches output like :
" line=4 id=1 name=ALEErrorSign
" строка=1 id=1000001 имя=ALEErrorSign
let l:pattern = 'id=\(\d\+\).*=ALE\(Warning\|Error\|Dummy\)Sign'
let l:pattern = '^.*=\d* .*=\(\d\+\) .*=ALE\(Warning\|Error\|Dummy\)Sign'
redir => l:output
silent exec 'sign place buffer=' . a:buffer