My personal configuration files and scripts.
1
fork

Configure Feed

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

jj: improve definition of open revset alias

+5 -4
+5 -4
dot_config/jj/config.toml.tmpl
··· 22 22 "slice(x)" = "slice(x, 2)" 23 23 "slice(x, n)" = "ancestors(mutable() & (..x | x::), n)" 24 24 25 - "open()" = "open(mine())" 26 - # The revisions in domain which are not merged into trunk(). 27 - "open(domain)" = "domain ~ ::immutable_heads()" 28 - 29 25 # Find the closest bookmarks to x. 30 26 "streams(x)" = "heads(::x & bookmarks())" 27 + 28 + # Select all revisions descended from trunk() and authored by me, but not merged 29 + # into trunk(). 30 + "open()" = "open(2)" 31 + "open(n)" = "slice(trunk().. & mine(), n)" 31 32 32 33 "wip()" = "description(glob:'wip:*')" 33 34 "private()" = "description(glob:'private:*')"