From 2ecff5f0bb1cc9439380c0a0586383213c19968b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 23 Jun 2025 02:18:40 +0200 Subject: [PATCH] feat(nvim): simplified the keys to move to an specific file on grapple --- .config/nvim/lua/plugins/extras/editor/marks/grapple.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua b/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua index ca6fb91d..e07ebc13 100644 --- a/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua +++ b/.config/nvim/lua/plugins/extras/editor/marks/grapple.lua @@ -4,7 +4,7 @@ local keys = {} -- stylua: ignore start for i = 1, 9 do - table.insert(keys, { prefix .. i, "Grapple select index=" .. i .. "", desc = "File " .. i }) + table.insert(keys, { "" .. i, "Grapple select index=" .. i .. "", desc = "File " .. i }) end table.insert(keys, { prefix .. "a", "Grapple tag", desc = "Add Mark" })