diff options
author | 2010-03-22 19:07:52 +0000 | |
---|---|---|
committer | 2010-03-22 19:07:52 +0000 | |
commit | 836a95be8645d72b7a5395520bb2a2868215145f (patch) | |
tree | 0c6162fe64a8ec1f75ac530863f07e6dcd20d47a /usr.bin/tmux/tmux.h | |
parent | Accept a full key match (not a partial) even if there is data left in (diff) | |
download | wireguard-openbsd-836a95be8645d72b7a5395520bb2a2868215145f.tar.xz wireguard-openbsd-836a95be8645d72b7a5395520bb2a2868215145f.zip |
Support up, down, left, right movement through panes with -UDLR flags to
select-pane.
Also REMOVE the up- and down-pane commands: equivalent behaviour is now
available using -t :.+ and -t :.-.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d2f4ec3bcbc..4ae525ebe49 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.210 2010/03/22 19:02:54 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.211 2010/03/22 19:07:52 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1832,6 +1832,10 @@ void window_pane_mouse(struct window_pane *, int window_pane_visible(struct window_pane *); char *window_pane_search( struct window_pane *, const char *, u_int *); +struct window_pane *window_pane_find_up(struct window_pane *); +struct window_pane *window_pane_find_down(struct window_pane *); +struct window_pane *window_pane_find_left(struct window_pane *); +struct window_pane *window_pane_find_right(struct window_pane *); /* layout.c */ struct layout_cell *layout_create_cell(struct layout_cell *); |