diff options
author | w0rp <devw0rp@gmail.com> | 2022-12-27 16:24:10 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2022-12-27 16:24:10 +0000 |
commit | 98b2ef438e8e705a4788c2e1e9767cd40b12a16b (patch) | |
tree | 02261606efe0b66975dbb0ed3331f82ca6e74d61 /autoload | |
parent | fe61e0004075e8502b18eca152ad9ecce1d9c3a1 (diff) | |
download | ale-98b2ef438e8e705a4788c2e1e9767cd40b12a16b.zip |
#4400 - Remove virtual-text defaults from highlight.vim
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/highlight.vim | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/autoload/ale/highlight.vim b/autoload/ale/highlight.vim index c284f5ca..473ad354 100644 --- a/autoload/ale/highlight.vim +++ b/autoload/ale/highlight.vim @@ -22,26 +22,6 @@ if !hlexists('ALEInfo') highlight link ALEInfo ALEWarning endif -if !hlexists('ALEVirtualTextError') - highlight link ALEVirtualTextError ALEError -endif - -if !hlexists('ALEVirtualTextStyleError') - highlight link ALEVirtualTextStyleError ALEVirtualTextError -endif - -if !hlexists('ALEVirtualTextWarning') - highlight link ALEVirtualTextWarning ALEWarning -endif - -if !hlexists('ALEVirtualTextStyleWarning') - highlight link ALEVirtualTextStyleWarning ALEVirtualTextWarning -endif - -if !hlexists('ALEVirtualTextInfo') - highlight link ALEVirtualTextInfo ALEVirtualTextWarning -endif - " The maximum number of items for the second argument of matchaddpos() let s:MAX_POS_VALUES = 8 let s:MAX_COL_SIZE = 1073741824 " pow(2, 30) |