mirror of
https://github.com/NotAShelf/direnv.nvim.git
synced 2024-11-01 08:31:13 +00:00
ensure all keymap commands are valid Lua strings
This commit is contained in:
parent
8567799d76
commit
90f356d4b5
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ local function setup_keymaps(keymaps, mode, opts)
|
|||
for _, map in ipairs(keymaps) do
|
||||
local options =
|
||||
vim.tbl_extend("force", { noremap = true, silent = true }, opts or {})
|
||||
vim.api.nvim_set_keymap(mode, map[1], map[2], options)
|
||||
vim.api.nvim_set_keymap(mode, map[1], tostring(map[2]), options)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue