Welcome to Vifm Q&A, where you can ask questions about using Vifm. Registration is optional, anonymous posts are moderated. E-mail and GitHub logins are enabled.
0 votes
in vifm by

Hello
How can i add directory to bookmark list?

1 Answer

+1 vote
by

From a running instance navigate inside that directory and either press m{mark name} (e.g. md) or execute :bmark tag-name depending on whether you want to bookmark it with a character or a tag.

If you want to do it in vifmrc, put something like this:

" navigate to this via 'r
mark r ~/repos/

and/or this:

" navigate to it using :bmgo repos
bmark! ~/repos/ repos
...