From 27ec24b9121de14295ea6689eb77ca24a6749508 Mon Sep 17 00:00:00 2001 From: Josh Dick Date: Fri, 30 Sep 2016 15:58:10 -0400 Subject: [PATCH] Slight tweak to improved vimdiff syling for #59. Prevents bad rendering when cursorline/cursorcolumn are enabled. --- colors/onedark.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 8b2e80b..8527dc9 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -183,7 +183,7 @@ call s:h("Directory", { "fg": s:blue }) " directory names (and other special nam call s:h("DiffAdd", { "bg": s:visual_grey}) " diff mode: Added line call s:h("DiffChange", { "bg": s:visual_grey }) " diff mode: Changed line call s:h("DiffDelete", { "fg": s:red }) " diff mode: Deleted line -call s:h("DiffText", { "bg": s:white, "fg": s:black }) " diff mode: Changed text within a changed line +call s:h("DiffText", { "bg": s:visual_grey, "fg": s:yellow }) " diff mode: Changed text within a changed line call s:h("ErrorMsg", {}) " error messages on the command line call s:h("VertSplit", { "fg": s:vertsplit }) " the column separating vertically split windows call s:h("Folded", { "fg": s:comment_grey }) " line used for closed folds