Closed justchokingaround closed 6 months ago
@justchokingaround By default the mappings are not silent. You can set vim.maps.<key>.silent
to true
and it will not appear in the command line.
In you case, it will be the following:
vim.maps.normal = {
"<Esc>" = {
action = ":noh<CR>";
silent = true;
};
};
This is intended behaviour, you can find the related docs with :help :map-silent
in Neovim.
oki, thank you a lot!
⚠️ Please verify that this bug has NOT been reported before.
Description
No response
👟 Reproduction steps
Spam a custom bind and you will see that for a very short period of time you get a command popup, before it gets executed.
👀 Expected behavior
I should not see that
😓 Actual Behavior
This is for the following bind:
💻 Metadata
"x86_64-linux"
- host os:Linux 6.6.23, NixOS, 24.05 (Uakari), 24.05.20240329.d8fe5e6
- multi-user?:yes
- sandbox:yes
- version:nix-env (Nix) 2.18.2
- nixpkgs:/etc/nix/inputs/nixpkgs
📝 Relevant log output