Memorize and jump to directories instantly.
A simple zsh plugin. Requires 0 MP.
git clone https://github.com/kiki-ki/rura.git ~/.zsh/rura
echo "source ~/.zsh/rura/rura.plugin.zsh" >> ~/.zshrcNote: Rura automatically adds itself to fpath for completions.
Rura follows the standard zsh plugin structure.
You can install it with your favorite plugin manager (Sheldon, zinit, zplug, etc.) by referencing: kiki-ki/rura.
rura @<name>- Jump to a memoryrura add <dir> <name>- Memorize a directoryrura delete <name>- Forget a memoryrura list- List all memoriesrura help- Show help messagerura version- Show version
rura add . docs # Memorize current directory as 'docs'
rura add ~/work/project my-project # Memorize specific directory
rura @docs # Jump to 'docs'
rura delete docs # Forget 'docs'
# Tab completion works
rura @<TAB>
# @docs -- ~/Documents
# @my-project -- ~/work/projectRURA_MEMORY_DIR- Directory where memories (symlinks) are stored. (Default:~/.rura)
MIT License