autoload/lsp/lsp.vim | 8 ++++---- diff --git a/autoload/lsp/lsp.vim b/autoload/lsp/lsp.vim index 29e09881fc27d619a034f1da3bc9ea8196c9ce94..23ae46a7aa2181279af9141b41e518fae8d1c801 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'})