From b492da736e176387d50d4b3856bb64d1a1238f76 Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 3 Feb 2022 10:07:11 +0000 Subject: [PATCH] Use format_draw for command prompt prefix to allow styles, GitHub issue 3054. --- usr.bin/tmux/status.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/tmux/status.c b/usr.bin/tmux/status.c index 7fb9764c937..c4e0b456791 100644 --- a/usr.bin/tmux/status.c +++ b/usr.bin/tmux/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.231 2021/11/15 10:58:13 nicm Exp $ */ +/* $OpenBSD: status.c,v 1.232 2022/02/03 10:07:11 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -718,7 +718,7 @@ status_prompt_redraw(struct client *c) memcpy(&cursorgc, &gc, sizeof cursorgc); cursorgc.attr ^= GRID_ATTR_REVERSE; - start = screen_write_strlen("%s", c->prompt_string); + start = format_width(c->prompt_string); if (start > c->tty.sx) start = c->tty.sx; @@ -728,7 +728,7 @@ status_prompt_redraw(struct client *c) for (offset = 0; offset < c->tty.sx; offset++) screen_write_putc(&ctx, &gc, ' '); screen_write_cursormove(&ctx, 0, lines - 1, 0); - screen_write_nputs(&ctx, start, &gc, "%s", c->prompt_string); + format_draw(&ctx, &gc, start, c->prompt_string, NULL, 0); screen_write_cursormove(&ctx, start, lines - 1, 0); left = c->tty.sx - start; -- 2.20.1