diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-11-27 20:08:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-11-27 20:08:42 +0000 |
commit | 24d7d073fffbf5137176ef474f13f4cfe1f032e9 (patch) | |
tree | 64d3a0b5d4edfba4b811a0bb2a9a9383e3f23543 /tmux.h | |
parent | 9b8998aeec9c4dff695ae4108965677d90d9c9c7 (diff) | |
download | rtmux-24d7d073fffbf5137176ef474f13f4cfe1f032e9.tar.gz rtmux-24d7d073fffbf5137176ef474f13f4cfe1f032e9.tar.bz2 rtmux-24d7d073fffbf5137176ef474f13f4cfe1f032e9.zip |
Support the 47 and 1047 SM and RM sequences (alternate screen without
cursor), requested by I forget who ages ago.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2145,10 +2145,10 @@ int window_pane_spawn(struct window_pane *, const char *, const char *, const char *, struct environ *, struct termios *, char **); void window_pane_resize(struct window_pane *, u_int, u_int); -void window_pane_alternate_on( - struct window_pane *, struct grid_cell *); -void window_pane_alternate_off( - struct window_pane *, struct grid_cell *); +void window_pane_alternate_on(struct window_pane *, + struct grid_cell *, int); +void window_pane_alternate_off(struct window_pane *, + struct grid_cell *, int); int window_pane_set_mode( struct window_pane *, const struct window_mode *); void window_pane_reset_mode(struct window_pane *); |