Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: jump labels with flash.nvim not visible in light mode #683

Open
4 tasks done
rbhanot4739 opened this issue Feb 6, 2025 · 0 comments
Open
4 tasks done

bug: jump labels with flash.nvim not visible in light mode #683

rbhanot4739 opened this issue Feb 6, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@rbhanot4739
Copy link

rbhanot4739 commented Feb 6, 2025

Did you check docs and existing issues?

  • I have read all the tokyonight.nvim docs
  • I have updated the plugin to the latest version before submitting this issue
  • 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)

v0.10.2

Operating system/version

15.2

Describe the bug

The jump labels for flash jump are not clearly visible when theme is used in light mode. For the reference I am using wezterm as my terminal with the builtin tokyonight theme only.

Please see the screenshots

Image

Dark mode is slightly better.

Image

This is pretty much the same with eza colors as well, its very hard to see the timestamps for the recently updated files.

Image

Steps To Reproduce

  1. Set the colorcheme to tokyonight-day in your config.
  2. Trigger the flash jump command with prefix s.
  3. The prefix key on the matched patterns is not visible clearly.

Expected Behavior

The prefixes for matches should be visible just like they are with tokyonight-moon or other dark vairants.

Repro

vim.env.LAZY_STDPATH = ".repro"
load(vim.fn.system("curl -s https://raw.githubusercontent.com/folke/lazy.nvim/main/bootstrap.lua"))()

require("lazy.minit").repro({
  spec = {
    {"folke/flash.nvim",
  opts = {
    remote_op = {
      restore = true,
      motion = nil,
    },
    jump = {
      autojump = true,
    }, -- automatically jump when there is only one match
    modes = {
      char = {
        keys = { "f", "F", "t", "T" },
        jump_labels = true,
        multi_line = false,
        jump = {
          autojump = true,
        },
      },
    },
  }}
  },
})

So the light theme is essentially unusable for me at this point, is it something with my config or is it a bug ?

@rbhanot4739 rbhanot4739 added the bug Something isn't working label Feb 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant