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:
parent
7306d860b7
commit
55c4a600c1
1 changed files with 2 additions and 2 deletions
|
@ -60,10 +60,10 @@ jlf() {
|
||||||
jj log -r "description(substring-i:\"$*\")"
|
jj log -r "description(substring-i:\"$*\")"
|
||||||
}
|
}
|
||||||
jlof() {
|
jlof() {
|
||||||
jj log --summary -r "description($*)"
|
jj log --summary -r "description(substring-i:\"$*\")"
|
||||||
}
|
}
|
||||||
jloof() {
|
jloof() {
|
||||||
jj log --patch -r "description($*)"
|
jj log --patch -r "description(substring-i:\"$*\")"
|
||||||
}
|
}
|
||||||
|
|
||||||
# show branches (i.e. head commits) w a couple previous commits
|
# show branches (i.e. head commits) w a couple previous commits
|
||||||
|
|
Loading…
Reference in a new issue