aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-07 18:06:44 -0300
committerEuAndreh <eu@euandre.org>2023-03-07 18:06:44 -0300
commit46bc8d5e8c1075f9815d7d9f4c4839913448c8e3 (patch)
treeeffe7bdef977d3a7e972a133ba6ad01e846349c9
parentbin/80: Adapt to the working vcs(1) (diff)
downloaddotfiles-46bc8d5e8c1075f9815d7d9f4c4839913448c8e3.tar.gz
dotfiles-46bc8d5e8c1075f9815d7d9f4c4839913448c8e3.tar.xz
etc/sh/rc: Case-insensitive search by default in g()
-rw-r--r--etc/sh/rc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sh/rc b/etc/sh/rc
index 0031a70..57a4f79 100644
--- a/etc/sh/rc
+++ b/etc/sh/rc
@@ -272,7 +272,7 @@ g() {
LINE="$(
# shellcheck disable=2086
- git grep -IE --color=always -n -- "$(cat "$PAT")" ${2:-} |
+ git grep -iIE --color=always -n -- "$(cat "$PAT")" ${2:-} |
fzf \
--exit-0 \
--select-1 \