Bump to 0.7.0 (#32)

This commit is contained in:
Denis Isidoro 2019-09-21 20:16:20 -03:00 committed by GitHub
parent 324af72a0e
commit f853181f83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 6 deletions

View file

@ -1,14 +1,12 @@
# 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)
An interactive cheatsheet tool for the command-line so that you'll never say the following again:
>— *How to run that command again?*<br>
*Oh, it's not in my bash history*<br>
— *Geez, it's almost what I wanted but I need to change some args*
<img src="https://user-images.githubusercontent.com/3226564/65347073-8dbbc480-dbb4-11e9-886f-0f10d56def74.gif" alt="Demo" width="60%" />
![Demo](https://user-images.githubusercontent.com/3226564/65380182-69431380-dcac-11e9-9af8-0f7b3c869d0f.gif)
**navi** allows you to browse through cheatsheets (that you may write yourself or download from maintainers) and execute commands, prompting for argument values.
@ -82,7 +80,7 @@ For example, this is a valid `.cheat` file:
# Change branch
git checkout <branch>
$ branch: git branch --format='%(refname:short)'
$ branch: git branch | awk '{print $NF}'
```
For advanced usage, please refer to the files in [/cheats](https://github.com/denisidoro/navi/tree/master/cheats).

View file

@ -58,4 +58,4 @@ git clean -dxf
# Sign all commits in a branch based on master
git rebase master -S -f
$ branch: git branch --format='%(refname:short)'
$ branch: git branch | awk '{print $NF}'

2
navi
View file

@ -15,7 +15,7 @@ source "${SCRIPT_DIR}/src/main.sh"
##? --no-interpolation Prevent argument interpolation [default: false]
##? --no-preview Hide command preview window [default: false]
VERSION="0.6.1"
VERSION="0.7.0"
docs::eval "$@"
main "$@"