Jump helps you navigate your file system faster by learning your habits. ✌️
Go Makefile
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
cli
cmd
config
fuzzy
scoring
shell
.gitignore
LICENSE.txt
Makefile
README.md
Vagrantfile
main.go

README.md

jump

A fuzzy quick-directory jumper. Kinda like autojump or z, but fuzzy.

Jump works its magic by keeping track of the directories you visit. It scores them to give you the best match for tour input. When integrated with your shell, the j function is available. It let's you jump across directories with ease.

If you visit /Users/bob/Projects/moneymaker often, type j mk and jump straight to it. Gone are the days of manual aliases for frequent project directories.

Installation

OSX

brew tap gsamokovarov/jump
brew install jump

Debian

wget https://github.com/gsamokovarov/jump/releases/download/v0.1.0/jump_0.1.0_amd64.deb
sudo dpkg -i jump_0.1.0_amd64.deb

Red Hat

wget https://github.com/gsamokovarov/jump/releases/download/v0.1.0/jump-0.1.0-1.x86_64.rpm
sudo rpm -i jump-0.1.0-1.x86_64.rpm

Source

You need a working Go workspace.

go get github.com/gsamokovarov/jump
git clone https://github.com/gsamokovarov/jump
cd jump
make
mv jump ~/bin # Or /usr/local/bin, if ~/bin isn't in $PATH.

Shell

Jump supports bash, zsh and fish out of the box. If your favourite shell isn't in the list below, give a heads up in the issue tracker.

To get the most out of jump, you have to integrate it with your shell. The integration gives you the j shell function and the automatic tracking and scoring.

bash

Put the line below in ~/.bashrc or ~/bash_profile:

eval "$(jump shell bash)"

zsh

Put the line below in ~/.zshrc:

eval "$(jump shell zsh)"

fish

Put the line below in ~/.config/fish/config.fish:

status --is-interactive; and . (jump shell fish | psub)

Issues

If you find any problems with jump, please, consider reporting them to the issue tracker.

License

Jump is licensed under the MIT license.

Hope you find jump useful!