From 4b7520e745f7deaee01464c700c9da6351161f41 Mon Sep 17 00:00:00 2001 From: Patrick Stockwell Date: Sun, 13 Nov 2022 20:58:49 +1100 Subject: [PATCH] Use correct case for diff highlight groups --- colors/vim-monokai-tasty.vim | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/colors/vim-monokai-tasty.vim b/colors/vim-monokai-tasty.vim index 254b213..82c689b 100644 --- a/colors/vim-monokai-tasty.vim +++ b/colors/vim-monokai-tasty.vim @@ -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 })