Have you ever opened a terminal, just to spend the next few seconds trying to navigate to the right project folder? No more! Introducing bmark
, the local bookmark manager. Search through your local bookmarks with a dmenu-like fuzzy finder, and open a terminal right in that directory!
Get a quick overview by running with no arguments:
bash
bmark
Output:
```
usage: bmark
Commands:
add [
bash
cargo install bmark
Add a bookmark to the current working directory. By default this bookmark will be named the same as to the current directory (ex: "foo/bar" -> "bar"), but you can specify a different name by providing it.
Edit the bookmarks.toml
file directly in your editor. The editor is determined by the editor_cmd
option (default is 'nvim').
List the current bookmarks in the terminal.
Launch dmenu-like program, search through bookmarks and open a terminal in the selected location. The terminal and dmenu-like program is determined by the user configuration (default is 'kitty' and 'dmenu').
Remove a bookmark by its name.
Update the aliases file (see alases).
bmark
automatically created a file called aliases.sh
in the data directory. This file defines shell aliases, that navigate to all your bookmarks.
If you you have a bookmark called "myMark" you can navigate it like this:
bash
_myMark
All the bookmark aliases are prefixed with '_' by default. This can be changed with the alias_prefix
option.
To enable this in your shell, you need to source the alias file from your shell configuration file (ex: .bashrc
for .zshrc
).
bmark
configuration is done using the configuration file. This file is located in the configuration directory (ex: ~/.config/bmark/config.toml
). Edit the configuration file easily with this command:
bash
bmark config edit
To show the current config, run this command:
bash
bmark config show
| Option | Default Value | | ------------ | ------------------------------- | | datadir | "~/.config/bmark/config.toml" | | dmenucmd | "dmenu" | | editorcmd | "nvim" | | terminalcmd | "kitty --detach" | | aliasprefix | "" | | display_sep | " : " |