diff options
author | EuAndreh <eu@euandre.org> | 2023-03-07 18:06:44 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-07 18:06:44 -0300 |
commit | 46bc8d5e8c1075f9815d7d9f4c4839913448c8e3 (patch) | |
tree | effe7bdef977d3a7e972a133ba6ad01e846349c9 | |
parent | bin/80: Adapt to the working vcs(1) (diff) | |
download | dotfiles-46bc8d5e8c1075f9815d7d9f4c4839913448c8e3.tar.gz dotfiles-46bc8d5e8c1075f9815d7d9f4c4839913448c8e3.tar.xz |
etc/sh/rc: Case-insensitive search by default in g()
-rw-r--r-- | etc/sh/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |