Add a format client_prefix which is 1 if prefix key has been pressed, used for

example #{?client_prefix,X,Y}. Also a few extra server_client_status needed.
This commit is contained in:
Nicholas Marriott
2013-02-10 18:58:05 +00:00
parent 6c53a1ed68
commit 06ac4b628d
4 changed files with 12 additions and 3 deletions

View File

@ -437,8 +437,7 @@ status_replace1(struct client *c, struct session *s, struct winlink *wl,
case 'P':
if (window_pane_index(wp, &idx) != 0)
fatalx("index not found");
xsnprintf(
tmp, sizeof tmp, "%u", idx);
xsnprintf(tmp, sizeof tmp, "%u", idx);
ptr = tmp;
goto do_replace;
case 'S':
@ -539,6 +538,7 @@ status_replace(struct client *c, struct session *s, struct winlink *wl,
*optr = '\0';
ft = format_create();
format_client(ft, c);
format_session(ft, s);
format_winlink(ft, s, wl);
format_window_pane(ft, wp);