Skip to content

Commit a81e42d

Browse files
rscharfegitster
authored andcommitted
column: use utf8_strnwidth() to strip out ANSI color escapes
Make use of utf8_strnwidth()'s feature to skip ANSI escape sequences instead of open-coding it. This shortens the code and makes it more consistent. This changes the behavior, though: The old code skips all kinds of Control Sequence Introducer sequences, while utf8_strnwidth() only skips the Select Graphic Rendition kind, i.e. those ending with "m". They are used for specifying color and font attributes like boldness. The only other kind of escape sequence we print in Git is Erase in Line, ending with "K". That's not used for columnar output, so this difference actually doesn't matter here. Signed-off-by: René Scharfe <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5fa0f52 commit a81e42d

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

column.c

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,7 @@ struct column_data {
2323
/* return length of 's' in letters, ANSI escapes stripped */
2424
static int item_length(const char *s)
2525
{
26-
int len, i = 0;
27-
struct strbuf str = STRBUF_INIT;
28-
29-
strbuf_addstr(&str, s);
30-
while ((s = strstr(str.buf + i, "\033[")) != NULL) {
31-
int len = strspn(s + 2, "0123456789;");
32-
i = s - str.buf;
33-
strbuf_remove(&str, i, len + 3); /* \033[<len><func char> */
34-
}
35-
len = utf8_strwidth(str.buf);
36-
strbuf_release(&str);
37-
return len;
26+
return utf8_strnwidth(s, -1, 1);
3827
}
3928

4029
/*

0 commit comments

Comments
 (0)