This nvim-plugin is just a wrapper for vim-which-key
to simplify setup in lua.
- Simple setup in lua.
- Can handle complex commands without having the need to make a dedicated command for them as is the case with bare
whichkey
. - Can handle leader and localleader in normal and visual mode through global or buffer keymaps.
Use your favourite plugin manager, for example using packer.nvim
use {
'AckslD/nvim-whichkey-setup.lua',
requires = {'liuchengxu/vim-which-key'},
}
or vim-plug
:
Plug 'liuchengxu/vim-which-key'
Plug 'AckslD/nvim-whichkey-setup.lua'
The plugin allows you to define commands and helper texts to be used with whichkey using a which_key_map.
Other settings such as vim.g.which_key_timeout
needs to be set separately.
For how to setup the keymaps see examples below. Additionally, feel free to checkout my own config for how I use it. You can use any key as initial key (not only leader) in normal or visual mode. To specify a leader key use the keywords:
leader
(uses<Leader>
in normal mode and<VisualBindings>
in visual)localleader
(uses<LocalLeader>
in normal mode and<LocalVisualBindings>
in visual).
Note that you won't need to map the leader-keys to the WhichKey
-command since this will be handled automatically by whichkey-setup
.
All commands specified are directly mapped rather relying on whichkey to execute them which allows you to set arbitrary complex commands.
Apart from setting up keymaps (see below) whichkey-setup also has a few global settings which can be configured by calling require("whichkey_setup").config
.
The following example sets the defaults (further explained below):
require("whichkey_setup").config{
hide_statusline = false,
default_keymap_settings = {
silent=true,
noremap=true,
},
default_mode = 'n',
}
hide_statusline
: Configures autocommands to hide the statusline when whichkey window is showing, uses these autocommands. The autocommands are configured when theconfig
-function is called.default_keymap_settings
: These are the settings used by default for keymaps, i.e. when noopts
is given toregister_keymap
, see below. Note that for these defaults to be used they need to be configured before callingregister_keymap
.default_mode
: Default mode used for mappings if not specified.
local wk = require('whichkey_setup')
local keymap = {
w = {':w!<CR>', 'save file'}, -- set a single command and text
j = 'split args', -- only set a text for an already configured keymap
['<CR>'] = {'@q', 'macro q'}, -- setting a special key
f = { -- set a nested structure
name = '+find',
b = {'<Cmd>Telescope buffers<CR>', 'buffers'},
h = {'<Cmd>Telescope help_tags<CR>', 'help tags'},
c = {
name = '+commands',
c = {'<Cmd>Telescope commands<CR>', 'commands'},
h = {'<Cmd>Telescope command_history<CR>', 'history'},
},
q = {'<Cmd>Telescope quickfix<CR>', 'quickfix'},
g = {
name = '+git',
g = {'<Cmd>Telescope git_commits<CR>', 'commits'},
c = {'<Cmd>Telescope git_bcommits<CR>', 'bcommits'},
b = {'<Cmd>Telescope git_branches<CR>', 'branches'},
s = {'<Cmd>Telescope git_status<CR>', 'status'},
},
}
}
wk.register_keymap('leader', keymap)
You can set maps for each type. Note that you can do this as many times as you want for each. This won't overwrite what was already set but rather extend it so that you can keep specific keymaps for various plugins in different places.
local wk = require('whichkey_setup')
local visual_keymap = {
K = {':move \'<-2<CR>gv-gv', 'move line up'},
J = {':move \'>+1<CR>gv-gv', 'move line down'},
}
local local_keymap = {
r = {':!python %', 'run python'},
}
wk.register_keymap('leader', visual_keymap, {mode = 'v'})
wk.register_keymap('localleader', local_keymap)
You can pass options to the register_keymap
-function which are all passed when setting the actual keymap.
If no options are passed {silent = true, noremap = true}
is used, however these defaults can also be configured using default_keymap_settings
, see above.
Additionally you to the map-options you can also pass a bufnr
to define buffer-local keymap. If bufnr
is not set a global keymap is defined.
local wk = require('whichkey_setup')
local keymap = {l = {name = '+lsp'}}
if client.resolved_capabilities.document_formatting then
keymap.l.f = {"<Cmd>lua vim.lsp.buf.formatting()<CR>", 'format'}
elseif client.resolved_capabilities.document_range_formatting then
keymap.l.f = {"<Cmd>lua vim.lsp.buf.range_formatting()<CR>", 'format'}
end
wk.register_keymap('leader', keymap, {noremap=true, silent=true, bufnr=bufnr})
You are not restricted to only configuring leader keys but also other keys, e.g.
local keymap_goto = {
name = "+goto",
h = { "<cmd>lua require'lspsaga.provider'.lsp_finder()<CR>", "References" },
d = { "<cmd>lua require'lspsaga.provider'.preview_definition()<CR>", "Peek Definition" },
D = { "<Cmd>lua vim.lsp.buf.definition()<CR>", "Goto Definition" },
s = { "<cmd>lua require('lspsaga.signaturehelp').signature_help()<CR>", "Signature Help" },
i = { "<cmd>lua vim.lsp.buf.implementation()<CR>", "Goto Implementation" }
}
wk.register_keymap("g", keymap_goto, { noremap = true, silent = true, bufnr = bufnr })
Credit: @folke.
However, notice that this might make certain operators not function anymore due to how this is handled in which-key, see this issue for example.