aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2017-05-29 20:42:53 +0000
committernicm <nicm>2017-05-29 20:42:53 +0000
commit64552ae304109c00a47e4f62875f6e1ce707e099 (patch)
tree2b3701f6def66e3f6b74453f3bc9425a5fc000f6 /tmux.h
parentb95e5827c1d2af3cc1fe1f9feda8edbc230ebb18 (diff)
downloadrtmux-64552ae304109c00a47e4f62875f6e1ce707e099.tar.gz
rtmux-64552ae304109c00a47e4f62875f6e1ce707e099.tar.bz2
rtmux-64552ae304109c00a47e4f62875f6e1ce707e099.zip
Add a flag to stop the prompt input being expanded.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 9c25bcc9..3f62683f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1328,6 +1328,8 @@ struct client {
struct event status_timer;
struct screen status;
+ struct screen *old_status;
+
#define CLIENT_TERMINAL 0x1
#define CLIENT_LOGIN 0x2
#define CLIENT_EXIT 0x4
@@ -1376,6 +1378,7 @@ struct client {
#define PROMPT_SINGLE 0x1
#define PROMPT_NUMERIC 0x2
#define PROMPT_INCREMENTAL 0x4
+#define PROMPT_NOFORMAT 0x8
int prompt_flags;
struct session *session;