From b9fd19fa160490609389cd45d552896ec4264a6d Mon Sep 17 00:00:00 2001 From: hrsh7th <629908+hrsh7th@users.noreply.github.com> Date: Sun, 31 Mar 2024 18:22:56 +0900 Subject: [PATCH] fix #1649 --- plugin/cmp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/cmp.lua b/plugin/cmp.lua index 0e5e691..611b5c9 100644 --- a/plugin/cmp.lua +++ b/plugin/cmp.lua @@ -25,7 +25,7 @@ for kind in pairs(types.lsp.CompletionItemKind) do end end -autocmd.subscribe('ColorScheme', function() +autocmd.subscribe({ 'ColorScheme', 'UIEnter' }, function() highlight.inherit('CmpItemAbbrDefault', 'Pmenu', { bg = 'NONE', default = false }) highlight.inherit('CmpItemAbbrDeprecatedDefault', 'Comment', { bg = 'NONE', default = false }) highlight.inherit('CmpItemAbbrMatchDefault', 'Pmenu', { bg = 'NONE', default = false })