From 4082d92ed990734c2740b821742f3d9c89206df0 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Fri, 28 Feb 2025 15:20:21 +0100 Subject: [PATCH] jj: Change log finding alias to case insensitive Since 612b92d1 we are matching private commits case insensitively, we should also match default commit search insensitively by default. This changes the alias to search without caring for the case. We do not have an equivalent alias for case sensitive search, and I will only add one if I need the specificity often enough to warrant an extra alias. --- vcs/jj/config/sh/alias.d/jj.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vcs/jj/config/sh/alias.d/jj.sh b/vcs/jj/config/sh/alias.d/jj.sh index 457b5cc..6626c98 100644 --- a/vcs/jj/config/sh/alias.d/jj.sh +++ b/vcs/jj/config/sh/alias.d/jj.sh @@ -57,7 +57,7 @@ alias jloo="jj log --patch" alias JLOO="jj log --patch -r 'all()'" alias jol="jj op log" jlf() { - jj log -r "description(\"$*\")" + jj log -r "description(substring-i:\"$*\")" } jlof() { jj log --summary -r "description($*)"