Use correct case for diff highlight groups

This commit is contained in:
Patrick Stockwell
2022-11-13 20:58:49 +11:00
parent 363e7542c8
commit 4b7520e745

View File

@@ -146,11 +146,10 @@ call Highlight('Operator', { 'fg': s:magenta, 'bg': s:none, 'style': s:none })
call Highlight('PreProc', { 'fg': s:magenta, 'bg': s:none, 'style': s:none })
call Highlight('Statement', { 'fg': s:magenta, 'bg': s:none, 'style': s:none })
call Highlight('Repeat', { 'fg': s:magenta, 'bg': s:none, 'style': s:none })
call Highlight('diffChange', { 'fg': s:white, 'bg': s:purple_slate, 'style': s:none })
call Highlight('diffText', { 'fg': s:white, 'bg': s:bright_blue, 'style': s:bold })
call Highlight('diffDelete', { 'fg': s:dark_red, 'bg': s:blood_red, 'style': s:none })
call Highlight('diffAdd', { 'fg': s:none, 'bg': s:dark_green, 'style': s:none })
call Highlight('DiffChange', { 'fg': s:white, 'bg': s:purple_slate, 'style': s:none })
call Highlight('DiffText', { 'fg': s:white, 'bg': s:bright_blue, 'style': s:bold })
call Highlight('DiffDelete', { 'fg': s:dark_red, 'bg': s:blood_red, 'style': s:none })
call Highlight('DiffAdd', { 'fg': s:none, 'bg': s:dark_green, 'style': s:none })
call Highlight('diffAdded', { 'fg': s:light_green, 'bg': s:none, 'style': s:none })
call Highlight('diffRemoved', { 'fg': s:magenta, 'bg': s:none, 'style': s:none })
call Highlight('diffFile', { 'fg': s:white, 'bg': s:none, 'style': s:bold })