summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-04-19 22:55:06 +0100
committerw0rp <devw0rp@gmail.com>2017-04-19 22:55:06 +0100
commitd8dcc56af58d1545cf3a7a9f6160d8ba6ad39923 (patch)
tree8497fcf8f62d8806fa2a5a6600bcb4a7cb8654d7 /autoload
parent72449d7cb154ec16dee95fac76c487c28f7d48df (diff)
downloadale-d8dcc56af58d1545cf3a7a9f6160d8ba6ad39923.zip
Remove error highlights when buffers are cleaned up
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/cleanup.vim1
-rw-r--r--autoload/ale/highlight.vim19
2 files changed, 14 insertions, 6 deletions
diff --git a/autoload/ale/cleanup.vim b/autoload/ale/cleanup.vim
index 3b0b1d90..8b6494ef 100644
--- a/autoload/ale/cleanup.vim
+++ b/autoload/ale/cleanup.vim
@@ -13,6 +13,7 @@ function! ale#cleanup#Buffer(buffer) abort
" Clear delayed highlights for a buffer being removed.
if g:ale_set_highlights
call ale#highlight#UnqueueHighlights(a:buffer)
+ call ale#highlight#RemoveHighlights([])
endif
call remove(g:ale_buffer_info, a:buffer)
diff --git a/autoload/ale/highlight.vim b/autoload/ale/highlight.vim
index 8d70ead5..8ff5120f 100644
--- a/autoload/ale/highlight.vim
+++ b/autoload/ale/highlight.vim
@@ -46,18 +46,25 @@ function! s:GetCurrentMatchIDs(loclist) abort
return l:current_id_map
endfunction
+" Given a loclist for current items to highlight, remove all highlights
+" except these which have matching loclist item entries.
+function! ale#highlight#RemoveHighlights(loclist) abort
+ let l:current_id_map = s:GetCurrentMatchIDs(a:loclist)
+
+ for l:match in s:GetALEMatches()
+ if !has_key(l:current_id_map, l:match.id)
+ call matchdelete(l:match.id)
+ endif
+ endfor
+endfunction
+
function! ale#highlight#UpdateHighlights() abort
let l:buffer = bufnr('%')
let l:has_new_items = has_key(s:buffer_highlights, l:buffer)
let l:loclist = l:has_new_items ? remove(s:buffer_highlights, l:buffer) : []
- let l:current_id_map = s:GetCurrentMatchIDs(l:loclist)
if l:has_new_items || !g:ale_enabled
- for l:match in s:GetALEMatches()
- if !has_key(l:current_id_map, l:match.id)
- call matchdelete(l:match.id)
- endif
- endfor
+ call ale#highlight#RemoveHighlights(l:loclist)
endif
" Remove anything with a current match_id