folke / which-key.nvim

💥 Create key bindings that stick. WhichKey helps you remember your Neovim keymaps, by showing available keybindings in a popup as you type.
Apache License 2.0
4.99k stars 160 forks source link

Popup not display when using yank/change/delete #530

Closed shy-robin closed 3 weeks ago

shy-robin commented 9 months ago

Did you check docs and existing issues?

Neovim version (nvim -v)

0.9.0

Operating system/version

MacOS 13.0

Describe the bug

I don't want to the content which I delete / change be set in register automatically. So I configure these:

set({ "n", "v" }, "d", '"_d', { desc = "Delete with no register" })
set({ "n", "v" }, "dd", '"_dd', { desc = "Delete a line with no register" })
set({ "n", "v" }, "D", '"_D', { desc = "Delete backward with no register" })
set({ "n", "v" }, "c", '"_c', { desc = "Change with no register" })
set({ "n", "v" }, "cc", '"_cc', { desc = "Change a line with no register" })
set({ "n", "v" }, "C", '"_C', { desc = "Change backward with no register" })
set({ "n", "v" }, "s", '"_s', { desc = "Replace with no register" })
set({ "n", "v" }, "S", '"_S', { desc = "Replace a line with no register" })

However, these will cause that when I hit d or c, the popup will not display.

image

When I comment configuration above, the popup will display properly after I hit d or c.

image

Steps To Reproduce

See above.

Expected Behavior

See above.

Repro

-- DO NOT change the paths and don't remove the colorscheme
local root = vim.fn.fnamemodify("./.repro", ":p")

-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
  vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end

-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", lazypath, })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  "folke/tokyonight.nvim",
  { "folke/which-key.nvim", config = true },
  -- add any other plugins here
}
require("lazy").setup(plugins, {
  root = root .. "/plugins",
})

vim.cmd.colorscheme("tokyonight")
-- add anything else here
github-actions[bot] commented 1 month ago

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.