| Crates.io | projwarp |
| lib.rs | projwarp |
| version | 0.1.1 |
| created_at | 2025-11-13 07:25:14.878476+00 |
| updated_at | 2025-11-17 09:08:33.595074+00 |
| description | Jump to your projects instantly with fuzzy matching |
| homepage | https://github.com/ricky-ultimate/projwarp |
| repository | https://github.com/ricky-ultimate/projwarp |
| max_upload_size | |
| id | 1930612 |
| size | 1,066,031 |
A blazingly fast CLI tool to jump between your projects instantly. No more cd-ing through endless directories!
Open Terminal and run:
irm https://raw.githubusercontent.com/ricky-ultimate/projwarp/master/quick-install.ps1 | iex
Note: If you get an error about execution policy, run Terminal as Administrator first, or use Method 2.
Go to GitHub Releases and download:
projwarp-vX.X.X-x86_64-pc-windows-msvc.zipRight-click the ZIP file → Extract All → Choose a location (e.g., Downloads\projwarp)
Open Terminal in the extracted folder (Shift + Right-click → "Open Terminal window here") and run:
# Unblock the script (important!)
Unblock-File -Path .\install.ps1
# Run the installer
.\install.ps1
If you get an execution policy error:
# Option A: Run with bypass
powershell -ExecutionPolicy Bypass -File .\install.ps1
# Option B: Allow scripts for your user (one-time setup)
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
.\install.ps1
Close and reopen Terminal to load the new configuration.
choco install projwarp
Download the appropriate release:
projwarp-vX.X.X-x86_64-apple-darwin.tar.gzprojwarp-vX.X.X-aarch64-apple-darwin.tar.gzprojwarp-vX.X.X-x86_64-unknown-linux-gnu.tar.gzExtract and install:
tar -xzf projwarp-*.tar.gz
cd projwarp-*/
chmod +x projwarp
sudo mv projwarp /usr/local/bin/
Add shell function to your profile (~/.bashrc or ~/.zshrc):
# projwarp - Project navigation tool
proj() {
if [ "$1" = "add" ]; then
projwarp add "${@:2}"
elif [ "$1" = "list" ]; then
projwarp list
elif [ "$1" = "remove" ] || [ "$1" = "rm" ]; then
projwarp remove "$2"
elif [ "$1" = "rename" ] || [ "$1" = "mv" ]; then
projwarp rename "$2" "$3"
elif [ "$2" = "--code" ]; then
projwarp go "$1" --code
else
local output=$(projwarp go "$1" 2>&1)
if [ $? -eq 0 ]; then
cd "$output"
echo "Jumped to: $output"
else
echo "$output"
fi
fi
}
Reload your shell:
source ~/.bashrc # or source ~/.zshrc
If you have Rust installed:
# Install from crates.io
cargo install projwarp
# Or build from source
git clone https://github.com/ricky-ultimate/projwarp.git
cd projwarp
cargo build --release
# On Windows
.\target\release\projwarp.exe install
# On macOS/Linux
./target/release/projwarp install
After installation, verify everything works:
# Check binary is accessible
projwarp --version
# Check shell function
proj
# Should show usage information
# If installed via Chocolatey
choco uninstall projwarp
# If installed manually
powershell -ExecutionPolicy Bypass -File .\install.ps1 -Uninstall
# Or run the uninstaller from anywhere
projwarp uninstall
sudo rm /usr/local/bin/projwarp
# Manually remove the proj() function from ~/.bashrc or ~/.zshrc
# Add current directory (auto-generates alias from folder name)
proj add
# Add with custom alias
proj add -alias myproject
proj list
# Output:
# myproject → /home/user/projects/myproject
# website → /home/user/sites/website
# Jump to a project (fuzzy matching!)
proj myproj # Matches "myproject"
proj web # Matches "website"
proj proj # Matches "projwarp"
# Open in VS Code
proj myproject -code
# Remove a project
proj remove myproject
proj rm myproject # Short alias
# Rename a project
proj rename oldname newname
proj mv oldname newname # Short alias
projwarp uses fuzzy matching, so you don't need to type the exact alias:
proj pw # Matches "projwarp"
proj myweb # Matches "my-website"
proj rust # Matches "rust-learning"
Projects are stored in ~/.projwarp.json:
{
"projects": {
"projwarp": "D:\\リッキー\\Projects\\Rust\\projwarp",
"website": "/home/user/sites/my-website"
}
}
You can manually edit this file if needed.
Requirements:
cargo build --release
The binary will be in target/release/projwarp (or projwarp.exe on Windows).
| Command | Alias | Description |
|---|---|---|
proj add [-alias <n>] |
- | Add current directory as a project |
proj list |
- | List all registered projects |
proj <name> |
- | Jump to a project directory |
proj <name> -code |
- | Open project in VS Code |
proj remove <alias> |
proj rm |
Remove a project alias |
proj rename <old> <new> |
proj mv |
Rename a project alias |
# Workflow example
cd ~/projects/my-awesome-app
proj add -alias awesome # Register the project
cd ~
proj awesome # Jump back instantly!
proj awesome -code # Open in VS Code
proj rename awesome myapp # Rename it
proj remove myapp # Remove when done
Inspired by tools like z, autojump, and fasd, but built with Rust for maximum speed and simplicity.
Made with ❤️ by リッキー