Add the '*' modifier, similar to the '+' modifier, to add a line-feed after a non-empty placeholder. Allow to print a head-line which content can be empty. For example for decorations: $ git log --graph --pretty=format:"%C(green)%*d %C(reset)%s" ^^^ * (HEAD, origin/master, origin/HEAD, master) | Update draft release notes to 1.7.10 * Merge branch 'jc/maint-request-pull-for-tag' |\ | * (origin/jc/maint-request-pull-for-tag) | | request-pull: explicitly ask tags/$name to be pulled * | Merge branch 'bl/gitweb-project-filter' |\ \ | * | (origin/bl/gitweb-project-filter) | | | gitweb: Make project search respect project_filter Signed-off-by: Luc Pionchon <pionchon.luc@xxxxxxxxx> --- Documentation/pretty-formats.txt | 4 ++++ pretty.c | 6 ++++++ t/t6006-rev-list-format.sh | 10 ++++++++++ 3 files changed, 20 insertions(+), 0 deletions(-) Hi, I now started to use git. When formatting my 'log' output, I have been looking for a modifier to add a line feed after a (potentially empty) placeholder. Git allows to add a line feed before, but not after a placeholder. This is a small patch that adds the feature. I hope it is useful to others. diff --git a/Documentation/pretty-formats.txt b/Documentation/pretty-formats.txt index 880b6f2..9114d49 100644 --- a/Documentation/pretty-formats.txt +++ b/Documentation/pretty-formats.txt @@ -159,6 +159,10 @@ If you add a `{plus}` (plus sign) after '%' of a placeholder, a line-feed is inserted immediately before the expansion if and only if the placeholder expands to a non-empty string. +If you add a `*` (asterisk sign) after '%' of a placeholder, a line-feed +is inserted immediately after the expansion if and only if the +placeholder expands to a non-empty string. + If you add a `-` (minus sign) after '%' of a placeholder, line-feeds that immediately precede the expansion are deleted if and only if the placeholder expands to an empty string. diff --git a/pretty.c b/pretty.c index 8688b8f..5ebaf88 100644 --- a/pretty.c +++ b/pretty.c @@ -1132,6 +1132,7 @@ static size_t format_commit_item(struct strbuf *sb, const char *placeholder, NO_MAGIC, ADD_LF_BEFORE_NON_EMPTY, DEL_LF_BEFORE_EMPTY, + ADD_LF_AFTER_NON_EMPTY, ADD_SP_BEFORE_NON_EMPTY } magic = NO_MAGIC; @@ -1142,6 +1143,9 @@ static size_t format_commit_item(struct strbuf *sb, const char *placeholder, case '+': magic = ADD_LF_BEFORE_NON_EMPTY; break; + case '*': + magic = ADD_LF_AFTER_NON_EMPTY; + break; case ' ': magic = ADD_SP_BEFORE_NON_EMPTY; break; @@ -1162,6 +1166,8 @@ static size_t format_commit_item(struct strbuf *sb, const char *placeholder, } else if (orig_len != sb->len) { if (magic == ADD_LF_BEFORE_NON_EMPTY) strbuf_insert(sb, orig_len, "\n", 1); + else if (magic == ADD_LF_AFTER_NON_EMPTY) + strbuf_addstr(sb, "\n"); else if (magic == ADD_SP_BEFORE_NON_EMPTY) strbuf_insert(sb, orig_len, " ", 1); } diff --git a/t/t6006-rev-list-format.sh b/t/t6006-rev-list-format.sh index 4442790..c692061 100755 --- a/t/t6006-rev-list-format.sh +++ b/t/t6006-rev-list-format.sh @@ -208,6 +208,16 @@ test_expect_success 'add LF before non-empty (2)' ' grep "^$" actual ' +test_expect_success 'add LF after non-empty (1) (empty)' ' + git show -s --pretty=format:"%*d%s%nfoo%n" HEAD^^ >actual && + test $(wc -l <actual) = 2 +' + +test_expect_success 'add LF after non-empty (2) (non empty)' ' + git show -s --pretty=format:"%*d%s%nfoo%n" HEAD >actual && + test $(wc -l <actual) = 3 +' + test_expect_success 'add SP before non-empty (1)' ' git show -s --pretty=format:"%s% bThanks" HEAD^^ >actual && test $(wc -w <actual) = 2 -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html