From 8c28d8f7d5c6446f735fb38941283b47f4e33982 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 25 Feb 2025 19:09:39 +0100 Subject: [PATCH] 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). --- 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 c40349e..395517a 100644 --- a/vcs/jj/config/sh/alias.d/jj.sh +++ b/vcs/jj/config/sh/alias.d/jj.sh @@ -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($*)"