-
Contributing guidelines
Module(s)mini.files QuestionIs there a way to delete a single bookmark? Or delete / clear them all? |
Beta Was this translation helpful? Give feedback.
Answered by
GitMurf
May 11, 2025
Replies: 1 comment 4 replies
-
Not within 'mini.files' itself. Bookmarks are by design quite short lived: they are created only "per explorer". Instead, more persistent bookmarks are responsibility of the user. In theory, |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ahhh perfect! Because my use case is that I am grabbing bookmarks on close of MF and persisting to a global var (to persist between neovim open/close). And then on open of MF I am looping through my global var and explicitly setting the marks each time.
The problem I was having was I also have a keymap to clear / remove items from my global var but all the old bookmarks were still showing up until I restarted neovim.
Setting this to false should solve my problem! Thanks!