You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Experience same issue here. Really looking forward if both plugins works well together.
It seems that Harpoon tracked listed buffer based on directory where Neovim opened.
Had the same issue. The problem is that harpoon initializes its internal list right when the lua module is first required. I fixed it by loading the harpoon module after the session is loaded.
localconfig_group=vim.api.nvim_create_augroup("SessionGroup", {})
vim.api.nvim_create_autocmd({ "User" }, {
pattern="SessionLoadPost",
group=config_group,
callback=function()
...-- Setup harpoon after session is loadedrequire("harpoon")
...end,
})
I am using this plugin and notices it remembers projects specific harpoon setups, which is amazing!
I noticed this functionality stopped when switching to Harpoon2. For this reason I am staying at harpoon 1.
Would it be possible to preserve the session harpoon state for Harpoon?
The text was updated successfully, but these errors were encountered: