mirror of
https://github.com/tmux/tmux.git
synced 2025-11-03 08:16:08 +00:00
Add a way (refresh-client -r) for control mode clients to provide OSC 10
and 11 responses to tmux so they can set the default foreground and background colours, from George Nachman in GitHub issue 4014.
This commit is contained in:
5
tmux.h
5
tmux.h
@@ -1100,6 +1100,9 @@ struct window_pane {
|
||||
int border_gc_set;
|
||||
struct grid_cell border_gc;
|
||||
|
||||
int control_bg;
|
||||
int control_fg;
|
||||
|
||||
TAILQ_ENTRY(window_pane) entry; /* link in list of all panes */
|
||||
TAILQ_ENTRY(window_pane) sentry; /* link in list of last visited */
|
||||
RB_ENTRY(window_pane) tree_entry;
|
||||
@@ -2407,6 +2410,8 @@ const struct utf8_data *tty_acs_rounded_borders(int);
|
||||
void tty_keys_build(struct tty *);
|
||||
void tty_keys_free(struct tty *);
|
||||
int tty_keys_next(struct tty *);
|
||||
int tty_keys_colours(struct tty *, const char *, size_t, size_t *,
|
||||
int *, int *);
|
||||
|
||||
/* arguments.c */
|
||||
void args_set(struct args *, u_char, struct args_value *, int);
|
||||
|
||||
Reference in New Issue
Block a user