From ea1721bcb0e2241a8a521269ae757786f182bb3a Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sun, 11 Oct 2009 23:46:02 +0000 Subject: Sync OpenBSD patchset 373: 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. --- tmux.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index f53b3b42..6aba8e1d 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.462 2009-10-11 23:38:16 tcunha Exp $ */ +/* $Id: tmux.h,v 1.463 2009-10-11 23:46:02 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1646,6 +1646,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); -- cgit