jj: Fix jlf alias function quoting
Fixed quoting so that we can now also search for things which would have a meaning in jj, e.g. `jlf 'WIP:'` (jj would pick up the ':' and complain before).
This commit is contained in:
parent
a3f30cf228
commit
8c28d8f7d5
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,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(\"$*\")"
|
||||
}
|
||||
jlof() {
|
||||
jj log --summary -r "description($*)"
|
||||
|
|
Loading…
Reference in a new issue