Make jj tips only show mutable and non-empty changes

This commit is contained in:
Sami Samhuri 2026-06-18 15:33:30 -07:00
parent a41717ab98
commit e92a2eeb92

View file

@ -41,7 +41,7 @@ bookmark-advance-to = "(@ ~ empty()) | (@ & empty())-"
wip = ["log", "-r", "open()"]
# Your unbookmarked tip changes.
tips = ["log", "-r", "unbookmarked()"]
tips = ["log", "-r", "unbookmarked() & mutable() ~ empty()"]
# Your bookmarks (local + remote) with date + name.
bks = ["log", "--no-graph", "-r", "(bookmarks() | remote_bookmarks()) & mine()",