Update batgrep documentation

This commit is contained in:
Ethan P 2019-12-23 16:50:56 -08:00
parent a3483a658a
commit f17681b8b8
No known key found for this signature in database
GPG Key ID: 6963FD04F6CF35EA

View File

@ -17,6 +17,8 @@ A script that combines [ripgrep](https://github.com/burntsushi/ripgrep) with bat
| Short | Long | Description |
| ----- | -------------------------- | ------------------------------------------------------------ |
| `-i` | `--ignore-case` | Use case insensitive searching. |
| `-s` | `--case-sensitive` | Use case sensitive searching. |
| `-S` | `--smart-case` | Use smart case searching. |
| `-A` | `--after-context=[LINES]` | Display the next *n* lines after a matched line. |
| `-B` | `--before-context=[LINES]` | Display the previous `n` lines before a matched line. |
| `-C` | `--context=[LINES]` | A combination of `--after-context` and `--before-context`. |