dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 68c971cc79c1c23bfdf4248d163dcc0d696202a0
parent 49b7c14dc5934205520478db12716ef9fc780d5f
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri, 22 May 2026 16:23:24 +0900

jj: only show trunk in ll and lp aliases

Since these aliases don't show the full graph, and most usage will be
checking ancestors and descendants, ignore side branches. In other
words, don't show descendants of ancestors other than ancestor commits
themselves. Show all descendants.

Diffstat:
M.config/jj/config.toml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.config/jj/config.toml b/.config/jj/config.toml @@ -6,8 +6,8 @@ email = "chris@bracken.jp" [aliases] l = ["log"] -ll = ["log", "-T", "builtin_log_detailed ++ diff.stat() ++ '\n'", "-r", "::", "--no-graph"] -lp = ["log", "-T", "builtin_log_detailed ++ diff.stat() ++ '\n' ++ diff.git() ++ '\n'", "-r", "::", "--no-graph"] +ll = ["log", "-T", "builtin_log_detailed ++ diff.stat() ++ '\n'", "-r", "::@ | @::", "--no-graph"] +lp = ["log", "-T", "builtin_log_detailed ++ diff.stat() ++ '\n' ++ diff.git() ++ '\n'", "-r", "::@ | @::", "--no-graph"] lol = ["log", "-T", "builtin_log_oneline", "-r", "::"] ws-add = ["util", "exec", "--", "jj-ws-add"] ws-forget = ["util", "exec", "--", "jj-ws-forget"]