fix(nvim): optionally register which-key prefix
This commit is contained in:
parent
b5e9107739
commit
ed9e644fff
@ -56,9 +56,12 @@ return {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
keys = function ()
|
keys = function ()
|
||||||
require('which-key').register({
|
local status_ok, which_key = pcall(require, 'which-key')
|
||||||
|
if status_ok then
|
||||||
|
which_key.register({
|
||||||
['<leader>t'] = { name = 'Res[t]', _ = 'which_key_ignore' }
|
['<leader>t'] = { name = 'Res[t]', _ = 'which_key_ignore' }
|
||||||
})
|
})
|
||||||
|
end
|
||||||
return {
|
return {
|
||||||
{ '<leader>tr', '<Plug>RestNvim', desc = 'Run the request under cursor' },
|
{ '<leader>tr', '<Plug>RestNvim', desc = 'Run the request under cursor' },
|
||||||
{ '<leader>tp', '<Plug>RestNvimPreview', desc = 'Preview the curl command for the request under cursor' },
|
{ '<leader>tp', '<Plug>RestNvimPreview', desc = 'Preview the curl command for the request under cursor' },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user