]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
forgot
authorChristoffer Aasted <chr.aasted@gmail.com>
Tue, 14 Feb 2023 22:21:09 +0000 (23:21 +0100)
committerChristoffer Aasted <chr.aasted@gmail.com>
Tue, 14 Feb 2023 22:21:09 +0000 (23:21 +0100)
autoload/lsp/lsp.vim

index 42ce8bdfbc9df080ee3d414742c67105dd5b4561..370b6658153b860b01ba3b4c7c0b03857503d5cd 100644 (file)
@@ -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})