mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 22:43:58 +00:00
Sync OpenBSD patchset 554:
Change status line drawing to create the window list in a separate screen and then copy it into the status line screen. This allows UTF-8 in window names and fixes some problems with #[] in window-status-format.
This commit is contained in:
6
tmux.h
6
tmux.h
@ -1,4 +1,4 @@
|
||||
/* $Id: tmux.h,v 1.521 2009-11-19 22:35:10 tcunha Exp $ */
|
||||
/* $Id: tmux.h,v 1.522 2009-11-19 22:37:04 tcunha Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -843,6 +843,10 @@ struct winlink {
|
||||
int idx;
|
||||
struct window *window;
|
||||
|
||||
size_t status_width;
|
||||
struct grid_cell status_cell;
|
||||
char *status_text;
|
||||
|
||||
RB_ENTRY(winlink) entry;
|
||||
TAILQ_ENTRY(winlink) sentry;
|
||||
};
|
||||
|
Reference in New Issue
Block a user