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.
This commit is contained in:
Marty Oehme 2025-03-15 11:12:51 +01:00
parent 7306d860b7
commit 55c4a600c1
Signed by: Marty
GPG key ID: 4E535BC19C61886E

View file

@ -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