From 292332efd97001a6ce28371c9d38ab4fb5399513 Mon Sep 17 00:00:00 2001 From: Christoffer Aasted Date: Tue, 14 Feb 2023 23:21:09 +0100 Subject: [PATCH] forgot --- autoload/lsp/lsp.vim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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}) -- 2.48.1