From: shane.xb.qian Date: Mon, 28 Nov 2022 09:15:15 +0000 (+0800) Subject: fix: make lsp outline kw hl be not overrode by cursorline as well X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=d49ffadd1d8e74933373f0ca6c80d95afa832ed3;p=vim-lsp.git fix: make lsp outline kw hl be not overrode by cursorline as well Signed-off-by: shane.xb.qian --- diff --git a/autoload/lsp/outline.vim b/autoload/lsp/outline.vim index c6384e2..82b2c57 100644 --- a/autoload/lsp/outline.vim +++ b/autoload/lsp/outline.vim @@ -259,7 +259,7 @@ export def OpenOutlineWindow() highlight default link LSPTitle Title endif - prop_type_add('LspOutlineHighlight', {bufnr: bufnr(), highlight: 'Search'}) + prop_type_add('LspOutlineHighlight', {bufnr: bufnr(), highlight: 'diffchange', override: true}) try autocmd_delete([{group: 'LSPOutline', event: '*'}])