diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-02-06 22:55:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-02-06 22:55:31 +0000 |
commit | bb53c20c1882cbc909d4fe2ae3c6ad665da6abf6 (patch) | |
tree | 345afb7897f7639b2c8981674e064d976f68ab57 /tmux.h | |
parent | 0a86d3579edb44ee559cfe6498f43d6637a08bd9 (diff) | |
download | rtmux-bb53c20c1882cbc909d4fe2ae3c6ad665da6abf6.tar.gz rtmux-bb53c20c1882cbc909d4fe2ae3c6ad665da6abf6.tar.bz2 rtmux-bb53c20c1882cbc909d4fe2ae3c6ad665da6abf6.zip |
Support attaching a client read-only with a new -r flag to the attach-session
command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1094,6 +1094,7 @@ struct client { #define CLIENT_IDENTIFY 0x100 #define CLIENT_DEAD 0x200 #define CLIENT_BORDERS 0x400 +#define CLIENT_READONLY 0x800 int flags; struct event identify_timer; @@ -1172,6 +1173,7 @@ struct cmd_entry { #define CMD_ARG01 0x10 #define CMD_ARG2 0x20 #define CMD_ARG12 0x40 +#define CMD_READONLY 0x80 int flags; const char *chflags; |