diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-02-19 00:03:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-02-19 00:03:21 +0000 |
commit | 3a89d1ef7f4e9da3b3606df9385b79a77322963e (patch) | |
tree | c384809f5eb2902e8a11bf19b0a180953a21aa42 /tmux.h | |
parent | a61b8a2033cd53281a7226affb97ddcb8b6689da (diff) | |
download | rtmux-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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -787,6 +787,7 @@ struct window_pane { int flags; #define PANE_REDRAW 0x1 +#define PANE_FREEZE 0x2 char *cmd; char *shell; |