We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pressing Esc when I am in any buffer (added to the list or not) brings me to whatever the first item in the list is. NVIM v0.10.2 Tested on macOS
Config:
return { "ThePrimeagen/harpoon", branch = "harpoon2", dependencies = { "nvim-lua/plenary.nvim" }; config = function() local harpoon = require("harpoon") -- REQUIRED harpoon:setup() -- REQUIRED vim.keymap.set("n", "<leader>a", function() harpoon:list():add() end) vim.keymap.set("n", "<leader>e", function() harpoon.ui:toggle_quick_menu(harpoon:list()) end) -- delete vim.keymap.set("n", "<leader>d", function() harpoon:list():delete() end) vim.keymap.set("n", "<leader>1", function() harpoon:list():select(1) end) vim.keymap.set("n", "<leader>2", function() harpoon:list():select(2) end) vim.keymap.set("n", "<leader>3", function() harpoon:list():select(3) end) vim.keymap.set("n", "<leader>4", function() harpoon:list():select(4) end) -- Toggle previous & next buffers stored within Harpoon list vim.keymap.set("n", "<C-[>", function() harpoon:list():prev() end) vim.keymap.set("n", "<C-]>", function() harpoon:list():next() end) end }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Pressing Esc when I am in any buffer (added to the list or not) brings me to whatever the first item in the list is.
NVIM v0.10.2
Tested on macOS
Config:
The text was updated successfully, but these errors were encountered: