From 55c4a600c1162bb9615c45eb78bc1c45fdadff01 Mon Sep 17 00:00:00 2001
From: Marty Oehme <contact@martyoeh.me>
Date: Sat, 15 Mar 2025 11:12:51 +0100
Subject: [PATCH] jj: Fix jlof and jloof to be case insensitive

Aligns them with the shorter-form `jlf` alias which has been case
insensitive for a while.
---
 vcs/jj/config/sh/alias.d/jj.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vcs/jj/config/sh/alias.d/jj.sh b/vcs/jj/config/sh/alias.d/jj.sh
index 6626c98..60f8025 100644
--- a/vcs/jj/config/sh/alias.d/jj.sh
+++ b/vcs/jj/config/sh/alias.d/jj.sh
@@ -60,10 +60,10 @@ jlf() {
     jj log -r "description(substring-i:\"$*\")"
 }
 jlof() {
-    jj log --summary -r "description($*)"
+    jj log --summary -r "description(substring-i:\"$*\")"
 }
 jloof() {
-    jj log --patch -r "description($*)"
+    jj log --patch -r "description(substring-i:\"$*\")"
 }
 
 # show branches (i.e. head commits) w a couple previous commits