mirror of
https://github.com/NotAShelf/direnv.nvim.git
synced 2024-11-01 08:31:13 +00:00
fix keymap descriptions
This commit is contained in:
parent
d4fa88bd63
commit
8b702a5d35
1 changed files with 9 additions and 6 deletions
|
@ -11,10 +11,13 @@ local function check_executable(executable_name)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
local function setup_keymaps(keymaps, mode, opts)
|
local function setup_keymaps(keymaps, mode)
|
||||||
for _, map in ipairs(keymaps) do
|
for _, map in ipairs(keymaps) do
|
||||||
local options =
|
local options = vim.tbl_extend(
|
||||||
vim.tbl_extend("force", { noremap = true, silent = true }, opts or {})
|
"force",
|
||||||
|
{ noremap = true, silent = true },
|
||||||
|
map[3] or {}
|
||||||
|
)
|
||||||
vim.keymap.set(mode, map[1], map[2], options)
|
vim.keymap.set(mode, map[1], map[2], options)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -57,21 +60,21 @@ M.setup = function(user_config)
|
||||||
function()
|
function()
|
||||||
M.allow_direnv()
|
M.allow_direnv()
|
||||||
end,
|
end,
|
||||||
desc = "Allow direnv",
|
{ desc = "Allow direnv" },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
config.keybindings.deny,
|
config.keybindings.deny,
|
||||||
function()
|
function()
|
||||||
M.deny_direnv()
|
M.deny_direnv()
|
||||||
end,
|
end,
|
||||||
desc = "Deny direnv",
|
{ desc = "Deny direnv" },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
config.keybindings.reload,
|
config.keybindings.reload,
|
||||||
function()
|
function()
|
||||||
M.check_direnv()
|
M.check_direnv()
|
||||||
end,
|
end,
|
||||||
desc = "Reload direnv",
|
{ desc = "Reload direnv" },
|
||||||
},
|
},
|
||||||
}, "n")
|
}, "n")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue