feat(nvim): simplified the keys to move to an specific file on grapple

This commit is contained in:
Sergio Laín 2025-06-23 02:18:40 +02:00
parent 594058127c
commit 2ecff5f0bb
No known key found for this signature in database
GPG key ID: 51BB28D8B42FB438

View file

@ -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" })