[![Rust](https://github.com/VoltaireNoir/markd/actions/workflows/rust.yml/badge.svg)](https://github.com/VoltaireNoir/markd/actions/workflows/rust.yml) [![Crates.io](https://img.shields.io/crates/v/markd)](https://crates.io/crates/markd) [![Downloads](https://img.shields.io/crates/d/markd)](https://crates.io/crates/markd) ![License](https://img.shields.io/crates/l/markd)
# markd Bookmark directories for easy directory-hopping in the terminal. ![](https://github.com/VoltaireNoir/markd/blob/main/screen1.png?raw=true) ![](https://github.com/VoltaireNoir/markd/blob/main/screen2.png?raw=true) All it takes is one command `markd` to bookmark your current directory, or use the `-p / --path` to specify custom path and `-a / --alias` to set a custom bookmark name. The CLI tool also provides the necessary functionality to search and clean your bookmarks. For example, the `purge` command will check all the paths and remove the ones that no longer exist, and the `list` command supports `--filter`, `--start` and `--end` for advanced searching. All paths are ensured to be valid ones, relative paths are stored in their expanded forms and names are always lowercase. No duplicate names are allowed (use an alias instead). Run `markd help` for a full list of supported commands and arguments. Run `markd --help` to get more info on the command. > Note: bookmarks are stored in `bookmarks.toml` file in the user home directory in the form of `name = "path"`, which can also be directly edited if necessary. ## Shell Support Since 'cd' is a built-in shell command, you need to use 'command substitution' to make use of markd to switch directories. To make it work, simply add a function definition to your shell config file. After adding the necessary code to your shell config, you should be able to jump between directories using the command `goto `. > Note: The function name used here is 'goto' but you can change it to whatever you prefer. > The following shell functions can also be generated to stdout by running the command `markd shell ` ### Fish - Create a `functions` directory in fish config folder (usually `/home/user/.config/fish`) - Inside the folder, create a file named `goto.fish` - Copy and paste the following code and save it ``` function goto cd $(markd g $argv) end ``` ### Zsh and Bash - Add the following code to your `.zshrc` or `.bashrc` ``` goto() { cd $(markd g $1); } ``` ### Powershell (untested) - Open powershell and open your config file by running `notepad $profile` - Add the following code and save it ``` function goto([string]$Bookmark) { cd (markd g $Bookmark) } ``` ## Install - Using cargo: `cargo install markd`, ensure `$HOME/.cargo/bin` is in path. - Pre-built binary: download the appropriate pre-built binary from the release section, place the binary in path.