+23
private_dot_config/private_jj/config.toml
+23
private_dot_config/private_jj/config.toml
···
137
137
# that is blacklisted or any of their children.
138
138
'ready()' = 'open() ~ unready()::'
139
139
140
+
'recent_work' = 'ancestors(visible_heads(), 3) & mutable()'
141
+
142
+
140
143
[git]
141
144
push-new-bookmarks = true
142
145
···
171
174
diff.git(),
172
175
)
173
176
'''
177
+
178
+
[template-aliases]
179
+
log_with_files = '''
180
+
if(root,
181
+
format_root_commit(self),
182
+
label(if(current_working_copy, "working_copy"),
183
+
concat(
184
+
format_short_commit_header(self) ++ "\n",
185
+
separate(" ",
186
+
if(empty, label("empty", "(empty)")),
187
+
if(description,
188
+
description.first_line(),
189
+
label(if(empty, "empty"), description_placeholder),
190
+
),
191
+
) ++ "\n",
192
+
if(self.contained_in("recent_work"), diff.summary()),
193
+
),
194
+
)
195
+
)
196
+
'''