From: Christoffer Aasted Date: Tue, 14 Feb 2023 22:21:09 +0000 (+0100) Subject: forgot X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=292332efd97001a6ce28371c9d38ab4fb5399513;p=vim-lsp.git forgot --- diff --git a/autoload/lsp/lsp.vim b/autoload/lsp/lsp.vim index 42ce8bd..370b665 100644 --- a/autoload/lsp/lsp.vim +++ b/autoload/lsp/lsp.vim @@ -37,13 +37,13 @@ def LspInitOnce() endif # Signs used for LSP diagnostics sign_define([{name: 'LspDiagError', text: 'E>', texthl: 'ErrorMsg', - linehl: 'MatchParen'}, + linehl: lineHL}, {name: 'LspDiagWarning', text: 'W>', texthl: 'Search', - linehl: 'MatchParen'}, + linehl: lineHL}, {name: 'LspDiagInfo', text: 'I>', texthl: 'Pmenu', - linehl: 'MatchParen'}, + linehl: lineHL}, {name: 'LspDiagHint', text: 'H>', texthl: 'Question', - linehl: 'MatchParen'}]) + linehl: lineHL}]) prop_type_add('LspTextRef', {highlight: 'Search', override: true}) prop_type_add('LspReadRef', {highlight: 'DiffChange', override: true})