diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-10-10 14:51:17 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-10-10 14:51:17 +0000 |
commit | 2123db726ea6524a385d93317144bab6cb592489 (patch) | |
tree | fe56699e60a8628f2ab75e542f3f0ff14c3dee77 /usr.bin/tmux/tmux.h | |
parent | 1e4a2d1970a402b97d119396cf414c3640d040f4 (diff) |
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 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 2b6f66297d6..9dfae4c400b 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.124 2009/10/10 10:02:48 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.125 2009/10/10 14:51:16 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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); |