navi/README.md

272 lines
9.4 KiB
Markdown
Raw Normal View History

2019-09-25 14:20:47 +03:00
# navi <img src="https://user-images.githubusercontent.com/3226564/65362934-b4432500-dbdf-11e9-8f75-815fbc5cbf8f.png" alt="icon" height="28px"/> [![CircleCI](https://circleci.com/gh/denisidoro/navi.svg?style=svg)](https://circleci.com/gh/denisidoro/navi) ![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/denisidoro/navi?include_prereleases)
2019-10-02 20:47:46 +03:00
An interactive cheatsheet tool for the command-line so that you won't say the following anymore:
2019-09-20 20:01:12 +03:00
2019-09-20 21:28:15 +03:00
>— *How to run that command again?*<br>
2019-10-03 14:47:48 +03:00
*Oh, it's not in my shell history*<br>
2019-09-20 21:28:15 +03:00
*Geez, it's almost what I wanted but I need to change some args*
2019-09-20 20:45:02 +03:00
2019-10-02 20:47:46 +03:00
![Demo](https://user-images.githubusercontent.com/3226564/66068076-4b36a800-e523-11e9-8f20-f5111522cba2.gif)
2019-09-20 20:01:12 +03:00
2019-10-24 00:37:51 +03:00
**navi** allows you to browse through cheatsheets (that you may write yourself or download from maintainers) and execute commands, with argument values prompted to you.
2019-09-20 20:01:12 +03:00
2019-10-02 18:13:42 +03:00
Table of contents
-----------------
* [Installation](#installation)
* [Using Homebrew or Linuxbrew](#using-homebrew-or-linuxbrew)
* [Using git](#using-git)
2019-10-02 18:13:42 +03:00
* [Using oh-my-zsh](#using-oh-my-zsh)
* [Upgrading](#upgrading)
* [Usage](#usage)
* [Preventing execution](#preventing-execution)
* [Pre-filtering](#pre-filtering)
* [Searching online repositories](#searching-online-repositories)
2019-09-27 20:31:56 +03:00
* [Shell widget](#shell-widget)
* [More options](#more-options)
* [Trying out online](#trying-out-online)
* [Motivation](#motivation)
* [Cheatsheets](#cheatsheets)
* [Using your own custom cheatsheets](#using-your-own-custom-cheatsheets)
* [Submitting cheatsheets](#submitting-cheatsheets)
* [Cheatsheet syntax](#cheatsheet-syntax)
* [Syntax overview](#syntax-overview)
* [Variables](#variables)
2019-09-26 16:50:25 +03:00
* [Table formatting](#table-formatting)
* [List customization](#list-customization)
* [Related projects](#related-projects)
* [Etymology](#etymology)
Installation
------------
### Using Homebrew or Linuxbrew
You can use [Homebrew](http://brew.sh/) or [Linuxbrew](http://linuxbrew.sh/)
2019-09-22 19:54:14 +03:00
to install **navi**:
```sh
brew install denisidoro/tools/navi
```
### Using git
2019-10-11 20:33:16 +03:00
Alternatively, you can `git clone` this repository:
2019-09-20 20:01:12 +03:00
2019-09-20 22:00:46 +03:00
```sh
2019-10-02 00:41:34 +03:00
git clone --depth 1 https://github.com/denisidoro/navi /opt/navi
2019-09-20 20:01:12 +03:00
cd /opt/navi
2019-10-11 20:33:16 +03:00
# to install in your $PATH
sudo make install
# to install in an arbitrary folder
./scripts/install /some/path
# install fzf
# refer to https://github.com/junegunn/fzf
2019-09-20 20:01:12 +03:00
```
2019-10-02 00:41:34 +03:00
### Using oh-my-zsh
2019-10-02 00:41:34 +03:00
Make sure that your oh-my-zsh `$ZSH_CUSTOM` directory is configured, then clone navi into the plugins directory.
```sh
2019-10-02 00:46:56 +03:00
plugins_dir="$ZSH_CUSTOM/plugins"
mkdir -p "$plugins_dir"
cd "$plugins_dir"
2019-10-02 00:41:34 +03:00
git clone https://github.com/denisidoro/navi
```
Then, add it to the oh-my-zsh plugin array to automatically enable the zsh widget:
```sh
2019-10-02 00:41:34 +03:00
plugins=(docker tmux fzf navi)
```
Lastly, reload your `zshrc` or spawn a new terminal to load navi. Once this is done, you should be able to use it
as a [shell widget](#shell-widget) with no additional setup.
2019-10-12 20:00:37 +03:00
> Please note that when installing as an oh-my-zsh plugin, `navi` will not be available as a command. If you also want
> to be able to run the command interactively, you will need to do one of the following:
- Install it to /usr/bin/local (via `sudo make install`)
- Manually set `$PATH` so that navi can be found.
You can manually update your path by adding a line like this in your `.zshrc`:
```sh
export PATH=$PATH:"$ZSH_CUSTOM/plugins/navi"
```
And verify that it works by running `which navi` after reloading your configuration.
Upgrading
---------
2019-09-20 20:01:12 +03:00
**navi** is being actively developed and you might want to upgrade it once in a while. Please follow the instruction below depending on the installation method used:
2019-10-23 19:59:15 +03:00
```sh
# brew
brew update
brew reinstall navi
# git or oh-my-zsh
cd "$(navi home)"
git pull
```
Usage
-----
By simply running `navi` you will be prompted with the default cheatsheets.
### Preventing execution
2019-09-26 16:50:25 +03:00
If you run `navi --print`, the selected snippet won't be executed. It will be printed to stdout instead.
### Pre-filtering
If you run `navi query <cmd>`, the results will be pre-filtered.
### Searching online repositories
If you run `navi search <cmd>`, **navi** will try to download cheatsheets from online repositories as well.
2019-09-26 16:50:25 +03:00
Please note that these cheatsheets aren't curated by **navi**'s maintainers and should be taken with a grain of salt. If you're not sure about executing these snippets, make sure to check the preview window or use the `--print` option.
2019-09-27 20:31:56 +03:00
### Shell widget
2019-10-02 20:47:46 +03:00
You can use **navi** as a widget to your shell. This way, your history is correctly populated and you can edit the command as you wish before executing it.
2019-09-27 20:31:56 +03:00
In order to use it, add this line to your `.bashrc`-like file:
2019-09-27 20:31:56 +03:00
```sh
# bash
source "$(navi widget bash)"
# zsh
2019-09-27 20:31:56 +03:00
source "$(navi widget zsh)"
2019-10-14 19:44:52 +03:00
# fish
source (navi widget fish)
2019-09-27 20:31:56 +03:00
```
By default, `Ctrl+G` is assigned to launching **navi**. If you want to change the keybinding, replace the argument of `bind` or `bindkey` in [the widget file](https://github.com/denisidoro/navi/search?q=filename%3Anavi.plugin.*&unscoped_q=filename%3Anavi.plugin.*).
If you want a widget for other shells, please upvote [this issue](https://github.com/denisidoro/navi/issues/37).
2019-09-27 20:31:56 +03:00
### More options
Please refer to `navi --help` for more details.
2019-09-20 21:28:15 +03:00
Trying out online
--------------------
2019-09-20 21:28:15 +03:00
If you don't have access to bash at the moment and you want to live preview **navi**, head to [this playground](https://www.katacoda.com/denisidoro/scenarios/navi). It'll start a docker container with instructions for you to install and use the tool. Note: login required.
2019-09-20 21:28:15 +03:00
Motivation
----------
2019-09-20 20:01:12 +03:00
The main objectives are:
2019-09-26 16:50:25 +03:00
- to increase discoverability, by finding snippets given keywords or descriptions;
2019-09-20 20:01:12 +03:00
- to prevent you from running auxiliar commands, copying the result into the clipboard and then pasting into the original command;
2019-09-21 01:20:44 +03:00
- to easily share one-liners with others so that they don't need to figure out how to write the commands;
2019-09-20 20:01:12 +03:00
- to improve terminal usage as a whole.
Sure, you can find autocompleters out there for all your favorite commands. However, they are very specific and each one may offer a different learning curve.
2019-09-21 01:16:47 +03:00
Or you can launch a browser and search for instructions on Google, but that takes some time.
2019-09-20 20:01:12 +03:00
2019-09-26 16:50:25 +03:00
**navi**, on the other hand, intends to be a general purpose platform for bookmarking any snippet at a very low cost.
2019-09-20 20:01:12 +03:00
Cheatsheets
-----------
2019-09-20 22:00:46 +03:00
### Using your own custom cheatsheets
2019-09-23 17:33:43 +03:00
In this case, you need to pass a `:`-separated list of separated directories which contain `.cheat` files:
2019-09-20 22:00:46 +03:00
```sh
navi --path "/folder/with/cheats"
2019-09-21 00:44:51 +03:00
```
Alternatively, you can set an environment variable in your `.bashrc`-like file:
```sh
export NAVI_PATH="/folder/with/cheats:/another/folder"
2019-09-20 22:00:46 +03:00
```
### Submitting cheatsheets
2019-09-21 01:16:47 +03:00
Feel free to fork this project and open a PR for me to include your contributions.
Cheatsheet syntax
-----------------
2019-09-23 17:33:43 +03:00
Cheatsheets are described in `.cheat` files.
### Syntax overview
2019-09-20 20:01:12 +03:00
- lines starting with `%` should contain tags which will be added to any command in a given file;
- lines starting with `#` should be descriptions of commands;
2019-09-23 17:33:43 +03:00
- lines starting with `$` should contain commands that generate a list of possible values for a given argument;
2019-09-20 20:01:12 +03:00
- all the other non-empty lines are considered as executable commands.
For example, this is a valid `.cheat` file:
```sh
% git, code
# Change branch
git checkout <branch>
2019-09-22 02:16:20 +03:00
$ branch: git branch | awk '{print $NF}'
2019-09-20 20:01:12 +03:00
```
### Variables
The interface prompts for variable names inside brackets (eg `<branch>`).
2019-09-25 14:28:29 +03:00
Variable names should only include alphanumeric characters and `_`.
The command for generating possible inputs can refer other variables:
```sh
# If you select 2 for x, the possible values of y will be 12 and 22
echo <x> <y>
2019-09-23 17:33:43 +03:00
$ x: echo -e '1\n2\n3'
$ y: echo -e "$((x+10))\n$((x+20))"
```
2019-09-26 16:50:25 +03:00
### Table formatting
2019-09-26 16:50:25 +03:00
You can pick a specific column of a selection and set the number of lines considered as headers:
```sh
# This will pick the 3rd column and use the first line as header
docker rmi <image_id>
2019-09-26 16:50:25 +03:00
$ image_id: docker images --- --column 3 --headers 1
```
2019-09-26 16:50:25 +03:00
List customization
------------------
2019-10-02 18:13:42 +03:00
Lists can be stylized with the [$FZF_DEFAULT_OPTS](https://github.com/junegunn/fzf) environment variable. This way, you can change the [color scheme](https://github.com/junegunn/fzf/wiki/Color-schemes), for example.
2019-09-26 16:50:25 +03:00
In addition:
- the `--fzf-overrides` option allows you to hide columns, for example
- the `--col-widths` option allows you to limit column widths
Please refer to `navi --help` for more details.
Related projects
----------------
2019-09-23 17:33:43 +03:00
There are many similar projects out there ([bro](https://github.com/hubsmoke/bro), [eg](https://github.com/srsudar/eg), [cheat.sh](https://github.com/chubin/cheat.sh), [tldr](https://github.com/tldr-pages/tldr), [cmdmenu](https://github.com/amacfie/cmdmenu), [cheat](https://github.com/cheat/cheat), [beavr](https://github.com/denisidoro/beavr), [how2](https://github.com/santinic/how2) and [howdoi](https://github.com/gleitz/howdoi), to name a few).
2019-09-20 20:01:12 +03:00
2019-09-26 16:50:25 +03:00
Most of them provide excellent cheatsheet repositories, but lack a nice UI and argument suggestions.
2019-09-20 20:01:12 +03:00
2019-09-22 18:14:33 +03:00
In any case, **navi** has the option to [search for some of these repositories](#searching-online-repositories).
2019-09-20 20:01:12 +03:00
Etymology
---------
2019-09-20 20:01:12 +03:00
In [The Legend of Zelda Ocarina of Time](https://zelda.gamepedia.com/Ocarina_of_Time), [navi](https://zelda.gamepedia.com/Navi) is a character that provides [Link](https://zelda.gamepedia.com/Link) with a variety of clues to help him solve puzzles and progress in his quest.