From 32f21751f4722abdb10b9da3b6cf088240d46421 Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 7 May 2017 19:33:59 +0100 Subject: [PATCH] Do not copy the items for setting highlights, as we do need to modify the items in ale_buffer_info --- autoload/ale/highlight.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/autoload/ale/highlight.vim b/autoload/ale/highlight.vim index 6cb1c3a..f3a479e 100644 --- a/autoload/ale/highlight.vim +++ b/autoload/ale/highlight.vim @@ -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)