hgrep: Human-friendly GREP

CI crate

hgrep is a grep tool to search files with given pattern and print the matched code snippets with human-friendly syntax highlighting. In short, it's a fusion of bat and grep or other alternatives like ripgrep.

This is similar to -C option of grep command, but hgrep focuses on human readable outputs. hgrep is useful to survey the matches with contexts around them. When some matches are near enough, hgrep prints the lines within one code snippet. Unlike grep -C, hgrep adopts some heuristics around blank lines to determine efficient number of context lines.

Example:

```sh

With standard grep

grep -nH pattern -R ./dir | hgrep

With grep alternative tools

rg -nH pattern ./dir | hgrep ```

As an optional feature, hgrep has builtin grep implementation thanks to ripgrep as library. It's a subset of rg command. And it's faster when there are so many matches since everything is done in the same process.

Example:

```sh

Use builtin subset of ripgrep

hgrep pattern ./dir ```

Please see the usage section for more details.

screenshot

Installation

Releases

Visit the releases page and download the zip file for your platform. Unarchive the file and put the executable file in some $PATH directory. Currently x86_64 Linux/macOS/Windows binaries are supported.

Via cargo package manager

sh cargo install hgrep

If you always use hgrep with reading the grep output from stdin and don't want the builtin ripgrep feature, it can be omitted. This reduces the number of dependencies, installation time, and the binary size.

sh cargo install hgrep --no-default-features

Usage

Eat grep -nH output

hgrep takes grep results via stdin. Since hgrep expects file paths and line numbers in each line of the output, -nH is necessary at grep command.

sh grep -nH pattern -R paths... | hgrep

grep alternative tools like ripgrep, ag, pt, ... are also available because they can output results compatible with grep -nH.

sh rg -nH pattern paths... | hgrep

When you want a pager, please use external commands like less.

sh grep -nH pattern -R paths... | hgrep | less -R

By default, hgrep shows at least 5 lines and at most 5 lines as context of a match. How many context lines is determined by some heuristics around blank lines for efficiency. Minimum context lines can be specified by -c and Maximum context lines can be specified by -C. If you don't want the heuristics, specify the same value to the options like -c 10 -C 10.

```sh

At least 10 context lines and at most 20 context lines

grep -nH pattern -R paths... | hgrep -c 10 -C 20 ```

Builtin ripgrep

Optionally hgrep provides builtin grep implementation. It is a subset of ripgrep since it's built using ripgrep as library. And it's faster when there are so many matches because everything is done in the same process. The builtin grep feature is enabled by default and can be omitted by installing it with --no-default-features.

sh hgrep pattern paths...

Since it is a subset, there are some restrictions against ripgrep. If you need full functionalities, use rg command and eat its output by hgrep.

Change color theme and layout

Default color theme is Monokai Extended respecting bat command's default. Other theme can be specified via --theme option.

sh grep -nH ... | hgrep --theme Nord

And hgrep respects BAT_THEME environment variable.

sh export BAT_THEME=OneHalfDark

Default layout is 'grid' respecting bat command's default. To print the matches without border lines, --no-grid option is available.

sh grep -nH ... | hgrep --no-grid

And hgrep respects BAT_STYLE environment variable. When plain or header or numbers is set, hgrep removes border lines.

sh export BAT_STYLE=numbers

Command options

See --help for full list of options.

Generate completion scripts

Shell completion script for hgrep command is available. --generate-completion-script option generates completion script and prints it to stdout. Bash, Zsh, Fish, PowerShell, Elvish are supported. See --help for argument of the option.

This is example to setup the script completion script on Zsh.

```sh

Let's say we set comps=~/.zsh/site-functions

hgrep --generate-completion-script zsh > ~/.zsh/site-functions/_hgrep ```

Alternatives

Some other alternatives instead of using hgrep.

Small ShellScript to combine ripgrep and bat

ripgrep and bat are well-designed tools so they can be used as building parts of small script.

```sh grep -nH ... | while IFS= read -r line; do # Parse $line and calculate the range of snippet and highlighted lines file=... lines=... range=...

# Show matched snippet bat -H ${lines} -r ${range} ${file} done ```

It works fine but hgrep is more optimized for this usage.

Fuzzy finder like fzf with bat preview window

Fuzzy finder like fzf privides a preview window functionality and bat can print the match previews.

sh grep -nH ... | \ fzf --preview='bat --pager never --color always -H {2} -r {2}: -p {1}' --delimiter=:

This usage is great when you need the incremental search, but you need to check each preview of matches one by one.

hgrep focuses on surveying all the matches.

License

hgrep is distributed under the MIT license.