From 6d68af55abe50e9ab94c411c6434224811665387 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Tue, 13 Feb 2024 14:16:02 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(nvim):=20add=20harpoon=20keyma?= =?UTF-8?q?p=20to=20clear=20all=20the=20marks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/editor/harpoon.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/nvim/lua/plugins/extras/editor/harpoon.lua b/.config/nvim/lua/plugins/extras/editor/harpoon.lua index 7773508d..e28df367 100644 --- a/.config/nvim/lua/plugins/extras/editor/harpoon.lua +++ b/.config/nvim/lua/plugins/extras/editor/harpoon.lua @@ -14,6 +14,7 @@ table.insert(keys, { "[H", function() require("harpoon"):list():prev() end, desc table.insert(keys, { "", function() require("harpoon"):list():next() end, desc = "Next Harpoon File" }) table.insert(keys, { "", function() require("harpoon"):list():prev() end, desc = "Prev Harpoon File" }) +table.insert(keys, { "hc", function() require("harpoon"):list():clear() end, desc = "Clear all Files" }) -- stylua: ignore end return {