From fc92d0dd72e69a0e6bb3b41ebb269abf7d8b419b Mon Sep 17 00:00:00 2001 From: Yegappan Lakshmanan Date: Thu, 27 Oct 2022 23:03:18 -0700 Subject: [PATCH] Update the sign text used for diags --- 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 29e0988..23ae46a 100644 --- a/autoload/lsp/lsp.vim +++ b/autoload/lsp/lsp.vim @@ -29,13 +29,13 @@ var lspInitializedOnce = false def LspInitOnce() # Signs used for LSP diagnostics - sign_define([{name: 'LspDiagError', text: 'E ', texthl: 'ErrorMsg', + sign_define([{name: 'LspDiagError', text: 'E>', texthl: 'ErrorMsg', linehl: 'MatchParen'}, - {name: 'LspDiagWarning', text: 'W ', texthl: 'Search', + {name: 'LspDiagWarning', text: 'W>', texthl: 'Search', linehl: 'MatchParen'}, - {name: 'LspDiagInfo', text: 'I ', texthl: 'Pmenu', + {name: 'LspDiagInfo', text: 'I>', texthl: 'Pmenu', linehl: 'MatchParen'}, - {name: 'LspDiagHint', text: 'H ', texthl: 'Question', + {name: 'LspDiagHint', text: 'H>', texthl: 'Question', linehl: 'MatchParen'}]) prop_type_add('LspTextRef', {'highlight': 'Search'}) -- 2.48.1