nvim: after/plugin/which-key: Add triggers blacklist
We have some mappings starting with p and need to blacklist in which key without which using paste 'p' becomes impossible.
This commit is contained in:
parent
31780f0c25
commit
6613689352
1 changed files with 7 additions and 1 deletions
|
@ -1 +1,7 @@
|
|||
require("which-key").setup {}
|
||||
require("which-key").setup {
|
||||
triggers_blacklist = {
|
||||
n = { "p" },
|
||||
i = { "j", "k" },
|
||||
v = { "j", "k" },
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue