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 JLOO="jj log --patch -r 'all()'"
|
||||||
alias jol="jj op log"
|
alias jol="jj op log"
|
||||||
jlf() {
|
jlf() {
|
||||||
jj log -r "description($*)"
|
jj log -r "description(\"$*\")"
|
||||||
}
|
}
|
||||||
jlof() {
|
jlof() {
|
||||||
jj log --summary -r "description($*)"
|
jj log --summary -r "description($*)"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue