folke/tokyonight.nvim

bug: leap deprecate `LeapLabelPrimary`

Closed this issue · 3 comments

Did you check docs and existing issues?

  • I have read all the tokyonight.nvim docs
  • I have searched the existing issues of tokyonight.nvim
  • I have searched the existing issues of plugins related to this issue

Neovim version (nvim -v)

0.10.0

Operating system/version

MacOs

Describe the bug

leap.nvim deprecate highlight groups (b75a86f)
labels stays greyed like backdrop
image

Steps To Reproduce

  1. install LazyVim
  2. enable leap in extras
  3. use leap

Expected Behavior

highlight labels
image

My LazyVim fix

return {
  {
    "folke/tokyonight.nvim",
    opts = {
      on_highlights = function(hl)
        hl.LeapLabel = { fg = "#ff007c", bold = true }
      end,
    },
  },
}

Instead of creating an issue, create a PR?

@folke i could do that but do not guarantee to cover all usage scenarios

Is it suits for you?

What do you mean? It's literally just changing one group, or am I missing something?

The code is here https://github.com/folke/tokyonight.nvim/blob/main/lua/tokyonight/groups/leap.lua