From 1fe54f212f09a03c2b5e277f0fe5b7b9d0b0a4ed Mon Sep 17 00:00:00 2001 From: Josh Dick Date: Mon, 18 Jul 2022 03:26:45 -0400 Subject: [PATCH] Fix vim-lsp highlighting. (#308) Fixes #251. --- colors/onedark.vim | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/colors/onedark.vim b/colors/onedark.vim index 35af9a6..8d3b861 100644 --- a/colors/onedark.vim +++ b/colors/onedark.vim @@ -575,8 +575,8 @@ call s:h("GitGutterDelete", { "fg": s:red }) " dense-analysis/ale call s:h("ALEError", { "fg": s:red, "gui": "underline", "cterm": "underline" }) -call s:h("ALEWarning", { "fg": s:yellow, "gui": "underline", "cterm": "underline"}) -call s:h("ALEInfo", { "gui": "underline", "cterm": "underline"}) +call s:h("ALEWarning", { "fg": s:yellow, "gui": "underline", "cterm": "underline" }) +call s:h("ALEInfo", { "gui": "underline", "cterm": "underline" }) " easymotion/vim-easymotion call s:h("EasyMotionTarget", { "fg": s:red, "gui": "bold", "cterm": "bold" }) @@ -613,10 +613,14 @@ call s:h("mkdLink", { "fg": s:blue }) call s:h("mkdURL", { "fg": s:cyan, "gui": "underline", "cterm": "underline" }) " prabirshrestha/vim-lsp -call s:h("LspError", { "fg": s:red }) -call s:h("LspWarning", { "fg": s:yellow }) -call s:h("LspInformation", { "fg": s:blue }) -call s:h("LspHint", { "fg": s:cyan }) +call s:h("LspErrorText", { "fg": s:red }) +call s:h("LspWarningText", { "fg": s:yellow }) +call s:h("LspInformationText", { "fg":s:blue }) +call s:h("LspHintText", { "fg":s:cyan }) +call s:h("LspErrorHighlight", { "fg": s:red, "gui": "underline", "cterm": "underline" }) +call s:h("LspWarningHighlight", { "fg": s:yellow, "gui": "underline", "cterm": "underline" }) +call s:h("LspInformationHighlight", { "fg":s:blue, "gui": "underline", "cterm": "underline" }) +call s:h("LspHintHighlight", { "fg":s:cyan, "gui": "underline", "cterm": "underline" }) " tpope/vim-fugitive call s:h("diffAdded", { "fg": s:green })