]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Update the sign text used for diags
authorYegappan Lakshmanan <yegappan@yahoo.com>
Fri, 28 Oct 2022 06:03:18 +0000 (23:03 -0700)
committerYegappan Lakshmanan <yegappan@yahoo.com>
Fri, 28 Oct 2022 06:03:18 +0000 (23:03 -0700)
autoload/lsp/lsp.vim

index 29e09881fc27d619a034f1da3bc9ea8196c9ce94..23ae46a7aa2181279af9141b41e518fae8d1c801 100644 (file)
@@ -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'})