Shonenjump alternatives and similar packages
Based on the "Command Line" category.
Alternatively, view Shonenjump alternatives based on common mentions on social networks and blogs.
-
Rich Interactive Widgets for Terminal UIs
Rich interactive widgets for terminal-based UIs written in Go -
The Platinum Searcher
A code search tool similar to ack and the_silver_searcher(ag). It supports multi platforms and multi encodings. -
tcell
Tcell is an alternate terminal package, similar in some ways to termbox, but better in others. -
readline
A pure golang implementation that provide most of features in GNU-Readline under MIT license. -
asciigraph
Go package to make lightweight ASCII line graph ╭┈╯ in command line apps with no other dependencies. -
CLI Color
Terminal color rendering tool library, support 8/16 colors, 256 colors, RGB color rendering output, compatible with Windows. -
mow.cli
A Go library for building CLI applications with sophisticated flag and argument parsing and validation. -
termtables
A Go port of the Ruby library terminal-tables for simple ASCII table generation as well as providing markdown and HTML output -
tabular
Print ASCII tables from command line utilities without the need to pass large sets of data to the API.
Get performance insights in less than 4 minutes
Do you think we are missing an alternative of Shonenjump or a related project?
README
Shonenjump

shonenjump is a lightweight autojump clone written in Go.
What does it do?
Quote from the description of autojump:
autojump is a faster way to navigate your filesystem. It works by maintaining a database of the directories you use the most from the command line.
Directories must be visited first before they can be jumped to.
How to use it?
Once you have cd
into a directory, shonenjump
will save it in a list.
The next time you can use the j
shortcut to visit it.
For example, suppose that you have cd
into a directory called /usr/local/Very-Long-Dir-Name/Sub-Dir/target
after
shonenjump
is enabled. You can then use j long
or j target
or j vldn
to visit it.
Sometimes the first matched directory is not what you want, you can type j <your key word>
and
then type Tab to trigger auto completion and see the options.
Installation
macOS
brew install suzaku/homebrew-shonenjump/shonenjump
Linux
- Download the shonenjump binary for your platform, place it in a directory in your
$PATH
. - Download the setup script for your shell and include it in your shell profile.
For example, if you are using zsh
, you can do the following:
wget -O ~/.shonenjump.zsh https://raw.githubusercontent.com/suzaku/shonenjump/master/scripts/shonenjump.zsh
echo 'source $HOME/.shonenjump.zsh' >> ~/.zshrc
```
1. If you are using `zsh`, you'll need an extra step to setup tab completion.
You need to place a script into the `zsh/site-functions` directory:
```bash
cd <Your Zsh Site-functions Dir>
wget https://raw.githubusercontent.com/suzaku/shonenjump/master/scripts/_j