marks.nvim icon indicating copy to clipboard operation
marks.nvim copied to clipboard

Marks are added back even after removing them

Open mslalith opened this issue 3 years ago • 4 comments

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

mslalith avatar Oct 09 '22 07:10 mslalith

Most likely a duplicate of #13

chentoast avatar Oct 10 '22 04:10 chentoast

Same issue.

tristone13th avatar Oct 31 '22 09:10 tristone13th

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", })

brianfabre avatar Jan 13 '23 07:01 brianfabre

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

MariaSolOs avatar Sep 10 '23 17:09 MariaSolOs