diff options
author | nicm <nicm> | 2021-01-17 16:17:41 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-01-17 16:17:41 +0000 |
commit | 71c590a37f98d82c72279eddae74f9b8be146202 (patch) | |
tree | 366ad8567a940568c76b1b5fcfaefd0871f514fd /tmux.h | |
parent | a75aca4d6ad71e45601b2b45f79036fae4f0d2a6 (diff) | |
download | rtmux-71c590a37f98d82c72279eddae74f9b8be146202.tar.gz rtmux-71c590a37f98d82c72279eddae74f9b8be146202.tar.bz2 rtmux-71c590a37f98d82c72279eddae74f9b8be146202.zip |
Add -N flag to never start server even if command would normally do so,
GitHub issue 2523.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1635,7 +1635,7 @@ struct client { #define CLIENT_DEAD 0x200 #define CLIENT_REDRAWBORDERS 0x400 #define CLIENT_READONLY 0x800 -/* 0x1000 unused */ +#define CLIENT_NOSTARTSERVER 0x1000 #define CLIENT_CONTROL 0x2000 #define CLIENT_CONTROLCONTROL 0x4000 #define CLIENT_FOCUSED 0x8000 |