Is it possible to add a final newline after log --stat output?
#7232
-
|
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
No, no option to do so. Maybe it's okay to insert blank line between diff blocks, but I don't feel strongly. |
Beta Was this translation helpful? Give feedback.
-
|
Try [template-aliases]
log_stat = "builtin_log_compact ++ diff.stat() ++ '\n'"and then using Or this version that indents the stats a bit that I like better: [template-aliases]
log_stat = "builtin_log_compact ++ indent(' ', diff.stat()) ++ '\n'"Personally I've been using summary instead (below), but I'll try stat now to see if I like it better. [template-aliases]
log_summary = "builtin_log_compact ++ indent(' ', diff.summary()) ++ '\n'" |
Beta Was this translation helpful? Give feedback.
No, no option to do so. Maybe it's okay to insert blank line between diff blocks, but I don't feel strongly.