summaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-23 17:25:13 +0100
committerw0rp <devw0rp@gmail.com>2017-05-23 17:25:13 +0100
commit58880f33bed9d90ab42808aefdf7b8d9d962f20b (patch)
treebd1cab362af9e9bea00ad89096c4058d2f867f6b /autoload
parent1e72a7a130c51f02b5910e982267f17e8c4880d6 (diff)
downloadale-58880f33bed9d90ab42808aefdf7b8d9d962f20b.zip
#572 Handle cleared SignColumn highlights too
Diffstat (limited to 'autoload')
-rw-r--r--autoload/ale/sign.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/sign.vim b/autoload/ale/sign.vim
index 09b774c1..687d5671 100644
--- a/autoload/ale/sign.vim
+++ b/autoload/ale/sign.vim
@@ -40,7 +40,7 @@ if !hlexists('ALESignColumnWithoutErrors')
if !empty(l:match)
execute 'highlight link ALESignColumnWithoutErrors ' . l:match[1]
- else
+ elseif l:highlight_syntax !=# 'cleared'
execute 'highlight ALESignColumnWithoutErrors ' . l:highlight_syntax
endif
endfunction