mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-29 15:26:52 +08:00
Do not copy the items for setting highlights, as we do need to modify the items in ale_buffer_info
This commit is contained in:
@@ -97,8 +97,7 @@ function! ale#highlight#UpdateHighlights() abort
|
||||
endfunction
|
||||
|
||||
function! ale#highlight#BufferHidden(buffer) abort
|
||||
let l:info = get(g:ale_buffer_info, a:buffer, {'loclist': []})
|
||||
let l:loclist = deepcopy(l:info.loclist)
|
||||
let l:loclist = get(g:ale_buffer_info, a:buffer, {'loclist': []}).loclist
|
||||
|
||||
" Remember loclist items, so they can be restored later.
|
||||
if !empty(l:loclist)
|
||||
|
||||
Reference in New Issue
Block a user