Skip to content

Commit

Permalink
fix: cmp match hidden on selected item
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmckendry committed Dec 25, 2023
1 parent f2a1595 commit f90f0e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/cyberdream/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ function M.setup()

CmpItemAbbr = { fg = t.fg, bg = t.bg },
CmpItemAbbrDeprecated = { fg = t.grey, bg = t.bg, strikethrough = true },
CmpItemAbbrMatch = { fg = t.blue, bg = t.bg },
CmpItemAbbrMatchFuzzy = { fg = t.blue, bg = t.bg },
CmpItemAbbrMatch = { fg = t.purple, bg = t.bg },
CmpItemAbbrMatchFuzzy = { fg = t.purple, bg = t.bg },

CmpItemKindVariable = { fg = t.cyan, bg = t.bg },
CmpItemKindInterface = { fg = t.cyan, bg = t.bg },
Expand All @@ -205,7 +205,7 @@ function M.setup()
CmpItemKindUnit = { fg = t.fg, bg = t.bg },

CmpItemMenu = { fg = t.grey, bg = t.bg },
CmpItemKindDefault = { fg = t.bgHighlight, bg = t.bg },
CmpItemKindDefault = { fg = t.grey, bg = t.bg },

-- Leap
LeapMatch = { fg = t.fg, bg = t.magenta },
Expand Down

0 comments on commit f90f0e1

Please sign in to comment.