which-key.nvim icon indicating copy to clipboard operation
which-key.nvim copied to clipboard

💥 Create key bindings that stick. WhichKey is a lua plugin for Neovim 0.5 that displays a popup with possible keybindings of the command you started typing.

Results 220 which-key.nvim issues
Sort by recently updated
recently updated
newest added

@folke Hello sorry for ghosting you. I has been sick for the last few days. So I try to display pop-up of previous `prefix` by calling `M.open` or changing `results`...

It seems like we are missing `_`.

AKA `yank register`, the register that records the most recent yank command, is not working with `which-key` default options. The issue is on the `operator` preset, and I'm disabling it...

When pressing " to paste from your global register, the `timeoutlen` is not respected and it loads instantly as opposed to the default 1000ms as the other which-key helpers. Additionally,...

it's pretty annoying to have to write ``` wk.register(keymap, { buffer = bufnr, mode = 'n' }) wk.register(keymap, { buffer = bufnr, mode = 'v' }) wk.register(keymap, { buffer =...

Hi first thanks for the awesome work. 😊 how can i bind neorg in which-key? [here](https://github.com/nvim-neorg/neorg/blob/main/lua/neorg/modules/core/keybinds/keybinds.lua) is the default mappings for neorg. for example, i want this bind in which-key...

When I type space, I get the following error: ```bash E5108: Error executing lua .../pack/packer/start/which-key.nvim/lua/which-key/view.lua:52: Window was closed immediately stack traceback: [C]: in function 'nvim_open_win' .../pack/packer/start/which-key.nvim/lua/which-key/view.lua:52: in function 'show' .../pack/packer/start/which-key.nvim/lua/which-key/view.lua:262:...

As the title says. It could be an incompatibility with a recent change in neovim nightly, because it works fine in 0.7.2, but broken in nightly. When pressing `` I...

Hello, first thanks for writing this wonderful plugin! Personally I rarely work with vim registers, but I noticed that when I press `"`, the applications briefly looses focus. I notice...