diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-10-10 14:51:16 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-10-10 14:51:16 +0000 |
commit | 4658c063d59bab42ccca8c2e58a50800b00b956f (patch) | |
tree | f03988611ea459776d50c5f28d0023d1d7af51c9 /tmux.h | |
parent | 3a20a05a49bdf7cfd7d2131c6f31a2ebf76ad4e5 (diff) | |
download | rtmux-4658c063d59bab42ccca8c2e58a50800b00b956f.tar.gz rtmux-4658c063d59bab42ccca8c2e58a50800b00b956f.tar.bz2 rtmux-4658c063d59bab42ccca8c2e58a50800b00b956f.zip |
New option, mouse-select-pane. If on, the mouse may be used to select the
current pane.
Suggested by sthen@ and also by someone else ages ago who I have forgotten.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1648,6 +1648,7 @@ struct window *window_create(const char *, const char *, const char *, const char *, struct environ *, struct termios *, u_int, u_int, u_int, char **); void window_destroy(struct window *); +void window_set_active_at(struct window *, u_int, u_int); void window_set_active_pane(struct window *, struct window_pane *); struct window_pane *window_add_pane(struct window *, u_int); void window_resize(struct window *, u_int, u_int); |