feat(nvim): add harpoon keymap to clear all the marks

This commit is contained in:
Sergio Laín 2024-02-13 14:16:02 +01:00
parent 1ed1abb13d
commit 6d68af55ab
No known key found for this signature in database
GPG key ID: 14C9B8080681777B

View file

@ -14,6 +14,7 @@ table.insert(keys, { "[H", function() require("harpoon"):list():prev() end, desc
table.insert(keys, { "<C-A-l>", function() require("harpoon"):list():next() end, desc = "Next Harpoon File" })
table.insert(keys, { "<C-A-h>", 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 {