feat(nvim): simplified the keys to move to an specific file on grapple
This commit is contained in:
parent
594058127c
commit
2ecff5f0bb
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ local keys = {}
|
|||
|
||||
-- stylua: ignore start
|
||||
for i = 1, 9 do
|
||||
table.insert(keys, { prefix .. i, "<cmd>Grapple select index=" .. i .. "<CR>", desc = "File " .. i })
|
||||
table.insert(keys, { "<leader>" .. i, "<cmd>Grapple select index=" .. i .. "<CR>", desc = "File " .. i })
|
||||
end
|
||||
|
||||
table.insert(keys, { prefix .. "a", "<cmd>Grapple tag<CR>", desc = "Add Mark" })
|
||||
|
|
Loading…
Add table
Reference in a new issue