From 0ce2c1b7daba1b451c956b760ea49ce8f0e03d31 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 13 Oct 2025 17:52:48 +0200 Subject: [PATCH] jj: Add raw log command alias Added `jlr` which, contrary to all the other jj log commands simply gives quicker access to the actual raw `log` command for custom operations. --- vcs/jj/config/sh/alias.d/jj.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/vcs/jj/config/sh/alias.d/jj.sh b/vcs/jj/config/sh/alias.d/jj.sh index a8033fe..d36e44b 100644 --- a/vcs/jj/config/sh/alias.d/jj.sh +++ b/vcs/jj/config/sh/alias.d/jj.sh @@ -55,6 +55,7 @@ alias jlo="jj log --summary -T builtin_log_compact_full_description -r 'recent() alias JLO="jj log --summary -T builtin_log_compact_full_description -r 'all()'" alias jloo="jj log --patch -r 'recent()'" alias JLOO="jj log --patch -r 'all()'" +alias jlr="jj log" # 'raw' log mode for custom opts alias jol="jj op log" jlf() { jj log -r "description(substring-i:\"$*\")"