warp-directory

rustcli
Easily switch between directories in your terminal with warp points. Supports zsh and bash

Installation

warp-directory can be installed via cargo or manually from source

Via cargo

cargo install warp-directory

Build from source

git clone https://github.com/Data5tream/warp-directory-rs.git
cd warp-directory-rs
cargo install --path .

Setup

warp-directory needs to be initialized in your shell setup, to add the warp command

zsh

eval "$(warp-directory init zsh)"

bash

eval "$(warp-directory init bash)"

Usage

You can list all available warp points

warp list

Add a new warp point, the path is optional, being the current working directory the default

warp add <name> <path>

Warp to a defined warp point

warp <name>

Delete a warp point

warp delete <name>
Consult the help command (warp --help) for more information