From: Yegappan Lakshmanan Date: Fri, 28 Oct 2022 06:03:18 +0000 (-0700) Subject: Update the sign text used for diags X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=fc92d0dd72e69a0e6bb3b41ebb269abf7d8b419b;p=vim-lsp.git Update the sign text used for diags --- 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'})