aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-02-19 00:03:21 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-02-19 00:03:21 +0000
commit3a89d1ef7f4e9da3b3606df9385b79a77322963e (patch)
treec384809f5eb2902e8a11bf19b0a180953a21aa42 /tmux.h
parenta61b8a2033cd53281a7226affb97ddcb8b6689da (diff)
downloadrtmux-3a89d1ef7f4e9da3b3606df9385b79a77322963e.tar.gz
rtmux-3a89d1ef7f4e9da3b3606df9385b79a77322963e.tar.bz2
rtmux-3a89d1ef7f4e9da3b3606df9385b79a77322963e.zip
copy mode uses the real screen as backing and if it is updated while copying,
strange things can happen. So, freeze reading from the pty while in copy mode.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 02712651..ac398f04 100644
--- a/tmux.h
+++ b/tmux.h
@@ -787,6 +787,7 @@ struct window_pane {
int flags;
#define PANE_REDRAW 0x1
+#define PANE_FREEZE 0x2
char *cmd;
char *shell;