harpoon icon indicating copy to clipboard operation
harpoon copied to clipboard

Harpoon2 won't save marks to fs

Open EvanCMcPheron opened this issue 7 months ago • 0 comments

Harpoon2 seems to refuse to load marks from the fs when I'm using it. The lazy.nvim config I'm using for it is:

  {
    "ThePrimeagen/harpoon",
    branch = "harpoon2",
    keys = {
      '<leader>fh',
      '<leader>hm',
      '<leader>hh',
      '<leader>nn',
      '<leader>nh',
      '<leader>nt',
      '<leader>ns'
    },
    dependencies = { "nvim-lua/plenary.nvim" },
    config = function() require('harpoon'):setup({}) end,
  },

When I look in the data folder for harpoon the only file of interest has this:

{
  "C:\\Program Files\\Neovide": [],
  "C:\\Users\\evani\\AppData\\Local": {
    "__harpoon_files":  []
  },
  "C:\\Users\\evani\\AppData\\Local\\nvim": {
    "__harpoon_files": []
  }
}

Which looks like to me means that harpoon is saving that there is a list for that location, but that it is empty.

I would provide more context but the more I try to look into this the more I have no idea what is going on, and I don't even know what more I could provide besides my nvim config

EvanCMcPheron avatar Jul 26 '24 02:07 EvanCMcPheron