navi/README.md

120 lines
5.4 KiB
Markdown
Raw Permalink Normal View History

# navi <img src="https://raw.githubusercontent.com/denisidoro/navi/master/assets/icon.png" alt="icon" height="28px"/> [![Actions Status](https://github.com/denisidoro/navi/workflows/CI/badge.svg)](https://github.com/denisidoro/navi/actions) ![GitHub release](https://img.shields.io/github/v/release/denisidoro/navi?include_prereleases)
An interactive cheatsheet tool for the command-line.
2019-09-20 20:45:02 +03:00
2021-04-10 23:37:48 +03:00
[![Demo](https://asciinema.org/a/406461.svg)](https://asciinema.org/a/406461)
2019-09-20 20:01:12 +03:00
2020-09-01 19:20:32 +03:00
**navi** allows you to browse through cheatsheets (that you may write yourself or download from maintainers) and execute commands. Suggested values for arguments are dynamically displayed in a list.
2019-09-20 20:01:12 +03:00
## Pros
2020-08-30 00:58:55 +03:00
- it will spare you from knowing CLIs by heart
2020-08-31 17:00:05 +03:00
- it will spare you from copy-pasting output from intermediate commands
- it will make you type less
2020-08-30 00:58:55 +03:00
- it will teach you new one-liners
2020-03-16 04:28:39 +03:00
It uses [fzf](https://github.com/junegunn/fzf), [skim](https://github.com/lotabout/skim), or [Alfred](https://www.alfredapp.com/) under the hood and it can be either used as a command or as a shell widget (_à la_ Ctrl-R).
2020-04-19 21:51:04 +03:00
## Table of contents
- [Installation](#installation)
- [Usage](#usage)
- [Cheatsheet repositories](#cheatsheet-repositories)
- [Cheatsheet syntax](#cheatsheet-syntax)
- [Customization](#customization)
- [More info](#more-info)
- [Trying out online](#trying-out-online)
- [Similar tools](#similar-tools)
- [Etymology](#etymology)
## Installation
2020-08-30 00:58:55 +03:00
**navi** can be installed with the following package managers:
2020-08-30 00:58:55 +03:00
[![Packaging status](https://repology.org/badge/vertical-allrepos/navi.svg)](https://repology.org/project/navi/versions)
The recommended way to install **navi** is by running:
```sh
2020-08-30 00:58:55 +03:00
brew install navi
2019-10-23 19:59:15 +03:00
```
2020-08-30 00:58:55 +03:00
If `brew` isn't available, you can check [alternative install instructions](docs/installation.md).
2020-03-16 04:00:33 +03:00
## Usage
2020-09-14 15:46:11 +03:00
There are multiple ways to use **navi**:
2020-09-12 00:01:15 +03:00
- by typing `navi` in the terminal
- pros: you have access to all possible subcommands and flags
2020-09-15 17:34:04 +03:00
- as a [shell widget](docs/installation.md#installing-the-shell-widget) for the terminal
- pros: the shell history is correctly populated (i.e. with the actual command you ran instead of `navi`) and you can edit the command as you wish before executing it
2022-11-15 22:53:14 +03:00
- as a [Tmux widget](docs/tmux.md)
- pros: you can use your cheatsheets in any command-line app even in SSH sessions
2023-12-15 16:28:36 +03:00
- as [aliases](docs/cheatsheet_syntax.md#aliases)
2020-09-14 15:46:58 +03:00
- as a [shell scripting tool](docs/shell_scripting.md)
2020-08-30 00:58:55 +03:00
- as an [Alfred workflow](docs/alfred.md)
2019-09-20 21:28:15 +03:00
2021-04-11 12:58:41 +03:00
In particular, check [these instructions](https://github.com/denisidoro/navi/issues/491) if you want to replicate what's shown in the demo above.
2021-04-11 12:55:14 +03:00
## Cheatsheet repositories
2020-03-16 04:00:33 +03:00
2024-09-16 11:29:33 +03:00
Running **navi** for the first time will help you download and manage cheatsheets. By default, they are stored at `~/.local/share/navi/cheats/`.
2020-03-16 04:00:33 +03:00
2020-08-30 00:58:55 +03:00
You can also:
2020-08-30 00:58:55 +03:00
- [browse through featured cheatsheets](docs/cheatsheet_repositories.md#browsing-through-cheatsheet-repositories)
- [import cheatsheets from git repositories](docs/cheatsheet_repositories.md#importing-cheatsheets)
- [write your own cheatsheets](#cheatsheet-syntax) (and [share them](docs/cheatsheet_repositories.md#submitting-cheatsheets), if you want)
- [use cheatsheets from other tools](docs/cheatsheet_repositories.md#using-cheatsheets-from-other-tools), such as [tldr](https://github.com/tldr-pages/tldr) and [cheat.sh](https://github.com/chubin/cheat.sh)
- [auto-update repositories](docs/cheatsheet_repositories.md#auto-updating-repositories)
2024-02-05 21:06:34 +03:00
- auto-export cheatsheets from your [TiddlyWiki](https://tiddlywiki.com/) notes using a [TiddlyWiki plugin](https://bimlas.github.io/tw5-navi-cheatsheet/)
2019-09-21 01:16:47 +03:00
## Cheatsheet syntax
2020-03-16 04:00:33 +03:00
Cheatsheets are described in `.cheat` files that look like this:
2019-09-20 20:01:12 +03:00
```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
```
2020-08-30 00:58:55 +03:00
The full syntax and examples can be found [here](docs/cheatsheet_syntax.md).
2020-03-16 04:00:33 +03:00
## Customization
2020-08-30 00:58:55 +03:00
You can:
2023-12-15 16:28:36 +03:00
- [setup your own config file](docs/navi_config.md)
- [set custom paths for your config file and cheat sheets](docs/navi_config.md#paths-and-environment-variables)
2024-01-16 02:37:42 +03:00
- [change colors](docs/navi_config.md#changing-colors)
- [resize columns](docs/navi_config.md#resizing-columns)
- [change how search is performed](docs/navi_config.md#overriding-fzf-options)
## More info
2019-09-26 16:50:25 +03:00
2020-08-30 00:58:55 +03:00
Please run the following command to read more about all possible options:
2020-03-16 04:00:33 +03:00
```sh
2020-08-30 00:58:55 +03:00
navi --help
2020-03-16 04:00:33 +03:00
```
2020-03-11 19:01:17 +03:00
2020-08-31 17:00:05 +03:00
In addition, please check the [/docs](docs) folder.
2020-03-11 19:01:17 +03:00
## Similar tools
2019-09-20 20:01:12 +03:00
There are many similar projects out there ([beavr](https://github.com/denisidoro/beavr), [bro](https://github.com/hubsmoke/bro), [cheat](https://github.com/cheat/cheat), [cheat.sh](https://github.com/chubin/cheat.sh), [cmdmenu](https://github.com/amacfie/cmdmenu), [eg](https://github.com/srsudar/eg), [how2](https://github.com/santinic/how2), [howdoi](https://github.com/gleitz/howdoi), [Command Line Interface Pages](https://github.com/command-line-interface-pages) and [tldr](https://github.com/tldr-pages/tldr), to name a few).
2019-09-20 20:01:12 +03:00
2020-08-30 00:58:55 +03:00
They are excellent projects, but **navi** remains unique in the following ways:
2020-08-30 00:58:55 +03:00
- it's natural to write cheatsheets tailored to your needs
- arguments are neither hardcoded nor a simple template
2020-03-16 04:00:33 +03:00
## Etymology
2019-09-20 20:01:12 +03:00
2021-06-15 23:36:45 +03:00
[Navi](https://zelda.gamepedia.com/Navi) is a character from [The Legend of Zelda Ocarina of Time](https://zelda.gamepedia.com/Ocarina_of_Time) that provides [Link](https://zelda.gamepedia.com/Link) with a variety of clues to help him solve puzzles and make progress in his quest.