๐Ÿ”’ Backup for my config files
dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add jj stack commands

Kacaii 3e75a8a0 bfd1f247

+7 -4
+7 -4
.config/jj/config.toml
··· 11 11 write-change-id-header = true 12 12 13 13 [aliases] 14 - n = ["new"] 15 - d = ["diff"] 16 - s = ["show"] 14 + s = ["stack"] 15 + stack = ["log", "-r", "stack()"] 17 16 mm = ["bookmark", "move", "main", "--to", "@-"] 18 - all = ["log", "-r", "all()"] 19 17 push = ["git", "push"] 20 18 fetch = ["git", "fetch"] 19 + 20 + [revset-aliases] 21 + "stack()" = "ancestors(mutable() & (..@ | @::), 2)" 22 + "stack(x)" = "ancestors(mutable() & (..x | x::), 2)" 23 + "stack(x, n)" = "ancestors(mutable() & (..x | x::), n)" 21 24 22 25 [ui] 23 26 editor = "nvim"