which-key.nvim
which-key.nvim copied to clipboard
Popup not display when using yank/change/delete
Did you check docs and existing issues?
- [X] I have read all the which-key.nvim docs
- [X] I have searched the existing issues of which-key.nvim
- [X] I have searched the existing issues of plugins related to this issue
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.
When I comment configuration above, the popup will display properly after I hit d
or c
.
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