mirror of
https://github.com/tmux/tmux.git
synced 2025-09-05 08:07:03 +00:00
Make refresh-client force update of jobs, from Sina Siadat.
This commit is contained in:
5
tmux.h
5
tmux.h
@ -1220,6 +1220,7 @@ struct client {
|
||||
#define CLIENT_UTF8 0x10000
|
||||
#define CLIENT_256COLOURS 0x20000
|
||||
#define CLIENT_IDENTIFIED 0x40000
|
||||
#define CLIENT_STATUSFORCE 0x80000
|
||||
int flags;
|
||||
struct key_table *keytable;
|
||||
|
||||
@ -1442,9 +1443,11 @@ int paste_set(char *, size_t, const char *, char **);
|
||||
char *paste_make_sample(struct paste_buffer *, int);
|
||||
|
||||
/* format.c */
|
||||
#define FORMAT_STATUS 0x1
|
||||
#define FORMAT_FORCE 0x2
|
||||
struct format_tree;
|
||||
struct format_tree *format_create(void);
|
||||
struct format_tree *format_create_status(int);
|
||||
struct format_tree *format_create_flags(int);
|
||||
void format_free(struct format_tree *);
|
||||
void printflike(3, 4) format_add(struct format_tree *, const char *,
|
||||
const char *, ...);
|
||||
|
Reference in New Issue
Block a user