Directory jumper made by Rust
Can you count how many times did you typed cd
on your teminal?
Typing..
cd \where\you\wanna\go
everytime is cumbersome.
Just use jump-kun.
jump-kun...
(This crate is heavyly inspired by b4b4r07's enhancd)
cargo install jump-kun
cargo install --path .
(Might work on fish or bash, but not sure...)
function jump-kun-jump(){
local selected=$(jump-kun)
if [[ -n $selected ]]; then
\cd $selected
fi
}
Then type jump-kun-jump
on your terminal.