chentoast / marks.nvim

A better user experience for viewing and interacting with Vim marks.
MIT License
783 stars 40 forks source link

Marks are added back even after removing them #82

Open mslalith opened 1 year ago

mslalith commented 1 year ago

Marks are getting added back. I deleted the mark and reopened nvim. I was able to see the deleted mark BTW I'm using auto-session

chentoast commented 1 year ago

Most likely a duplicate of #13

tristone13th commented 1 year ago

Same issue.

brianfabre commented 1 year ago

Since marks are usually done on a per-session basis, all I need is a clean slate when I begin.

Here is a simple autocmd that I use that removes all marks each time I enter a file.

It has been a good alternative so far.

vim.api.nvim_create_autocmd({ "BufRead" }, { command = ":delm a-zA-Z0-9", })

MariaSolOs commented 9 months ago

This was fixed in https://github.com/neovim/neovim/pull/24936 :)