mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-08-11 05:17:17 +02:00
Change key binding description
This commit is contained in:
parent
53a71c0e86
commit
f7eecb2bfe
1 changed files with 2 additions and 2 deletions
|
@ -137,10 +137,10 @@ return {
|
||||||
callback = function(args)
|
callback = function(args)
|
||||||
local buf_id = args.data.buf_id
|
local buf_id = args.data.buf_id
|
||||||
|
|
||||||
vim.keymap.set("n", "<M-l>", open_in_window, { buffer = buf_id, desc = "Open file in window" })
|
vim.keymap.set("n", "<M-l>", open_in_window, { buffer = buf_id, desc = "Open in picked window" })
|
||||||
vim.keymap.set("n", "<M-L>", function()
|
vim.keymap.set("n", "<M-L>", function()
|
||||||
open_in_window(true)
|
open_in_window(true)
|
||||||
end, { buffer = buf_id, desc = "Open file in window and close" })
|
end, { buffer = buf_id, desc = "Open in picked window and close" })
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue