Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
konradsz committed Mar 16, 2022
1 parent 3722d07 commit f2f8d17
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.4.0 (2022-03-16)
***
- improve clarity of using multi character input
- add support for opening files in VS Code
- add support for opening files in emacs and emacsclient

## v0.3.0 (2022-03-08)
***
- use $EDITOR as a fallback variable
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "igrep"
version = "0.3.0"
version = "0.4.0"
authors = ["Konrad Szymoniak <szymoniak.konrad@gmail.com>"]
license = "MIT"
description = "Interactive Grep"
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/igrep.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class Igrep < Formula
version "0.3.0"
version "0.4.0"
desc "Interactive Grep"
homepage "https://github.com/konradsz/igrep"
url "https://github.com/konradsz/igrep/releases/download/v#{version}/igrep-v#{version}-x86_64-apple-darwin.tar.gz"
sha256 "127f05a7e14c1031b202f5b3e39a5bbfde28b93cf4d700dde8310f52276189f8"
sha256 "89b9e6ab2561dbc0b236ef41702aacd73fb78bc9492da97e1b627e2856f15202"

def install
bin.install "ig"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Runs [grep](https://crates.io/crates/grep) ([ripgrep's](https://github.com/Burnt
-., --hidden Search hidden files and directories. By default, hidden files and
directories are skipped.
--editor <EDITOR> Text editor used to open selected match [possible values: vim,
neovim, nvim, nano]
neovim, nvim, nano, code, vscode, emacs, emacsclient]
-g, --glob <GLOB> Include files and directories for searching that match the given glob.
Multiple globs may be provided.
-h, --help Print help information
Expand Down Expand Up @@ -51,7 +51,7 @@ Runs [grep](https://crates.io/crates/grep) ([ripgrep's](https://github.com/Burnt
| `F5` | Re-run search |

## Specifying text editor
`igrep` supports vim, neovim/nvim and nano.
`igrep` supports Vim, Neovim, nano, VS Code, Emacs and EmacsClient.
To specify the editor, use one of the following (listed in order of their precedence):
- `--editor` option,
- `$IGREP_EDITOR` variable,
Expand Down

0 comments on commit f2f8d17

Please sign in to comment.