diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-23 17:25:13 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-23 17:25:13 +0100 |
commit | 58880f33bed9d90ab42808aefdf7b8d9d962f20b (patch) | |
tree | bd1cab362af9e9bea00ad89096c4058d2f867f6b /autoload | |
parent | 1e72a7a130c51f02b5910e982267f17e8c4880d6 (diff) | |
download | ale-58880f33bed9d90ab42808aefdf7b8d9d962f20b.zip |
#572 Handle cleared SignColumn highlights too
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/sign.vim | 2 |
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 |