1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-11 03:28:49 +00:00

Do not escape tabs in output (iTerm2 needs them). GitHub issue 3414.

This commit is contained in:
nicm 2022-12-16 08:22:05 +00:00
parent 8bd17bff49
commit 7cb48fc40b

View File

@ -834,7 +834,7 @@ cmdq_print_data(struct cmdq_item *item, int parse, struct evbuffer *evb)
char *sanitized, *msg, *line;
if (!parse) {
utf8_stravisx(&msg, data, size, VIS_OCTAL|VIS_CSTYLE|VIS_TAB);
utf8_stravisx(&msg, data, size, VIS_OCTAL|VIS_CSTYLE);
log_debug("%s: %s", __func__, msg);
} else {
msg = EVBUFFER_DATA(evb);