diff options
author | w0rp <devw0rp@gmail.com> | 2017-03-12 22:34:32 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-03-12 22:34:32 +0000 |
commit | 382e569f668f7d7f1e21ff705a124cad54dabef1 (patch) | |
tree | f5b4b450cfd07c8ee3146b9db94789f0abbca403 /autoload | |
parent | f25a54326054d1403047523e0e1bdf75d5cfc9c9 (diff) | |
download | ale-382e569f668f7d7f1e21ff705a124cad54dabef1.zip |
Revert "Don't save the sign ID on loclist items. This approach won't work."
This reverts commit f25a54326054d1403047523e0e1bdf75d5cfc9c9.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/sign.vim | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/autoload/ale/sign.vim b/autoload/ale/sign.vim index 99af2b17..1a39ba89 100644 --- a/autoload/ale/sign.vim +++ b/autoload/ale/sign.vim @@ -118,12 +118,20 @@ function! ale#sign#SetSigns(buffer, loclist) abort " Add the new signs, for l:index in range(0, len(l:signlist) - 1) + let l:sign_id = l:index + g:ale_sign_offset + 1 let l:sublist = l:signlist[l:index] let l:type = !empty(filter(copy(l:sublist), 'v:val.type ==# ''E''')) \ ? 'ALEErrorSign' \ : 'ALEWarningSign' - let l:sign_line = 'sign place ' . (l:index + g:ale_sign_offset + 1) + " Save the sign IDs we are setting back on our loclist objects. + " These IDs can be used later for changing line numbers of items + " we keep, based on what Vim adjusts automatically. + for l:obj in l:sublist + let l:obj.sign_id = l:sign_id + endfor + + let l:sign_line = 'sign place ' . l:sign_id \. ' line=' . l:sublist[0].lnum \. ' name=' . l:type \. ' buffer=' . a:buffer |