aboutsummaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2021-11-09 01:06:27 -0500
committertdro <tdro@users.noreply.github.com>2021-11-09 01:06:27 -0500
commit6985146955ee2e78402b3542519a0ebdbfa582b3 (patch)
tree0220790bd457d746751b0d68bcd34a433fd3bea3 /.local
parent905be1b07d5d9628108286e1f68ee102f4af77d3 (diff)
downloaddotfiles-6985146955ee2e78402b3542519a0ebdbfa582b3.tar.gz
dotfiles-6985146955ee2e78402b3542519a0ebdbfa582b3.tar.bz2
dotfiles-6985146955ee2e78402b3542519a0ebdbfa582b3.zip
.local/bin/seance: Fuzzy search
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/seance2
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/seance b/.local/bin/seance
index e367bcc..9c708cf 100755
--- a/.local/bin/seance
+++ b/.local/bin/seance
@@ -54,7 +54,7 @@ commit() {
[ "${1:-}" = "config" ] && cat "$spirits" && exit;
-[ "${1:-}" = "search" ] && commit | grep "$2" | head --lines=1 && exit;
+[ "${1:-}" = "search" ] && commit | grep --ignore-case -- "$2" | head --lines=1 && exit;
[ "${1:-}" = "start" ] && /bin/sh "$session" && exit;