diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-03-15 22:03:38 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-03-15 22:03:38 +0000 |
commit | aa8f9018ea16511b4a8da1c33c135495c954a81b (patch) | |
tree | b071bcd5595aec3bfa8dc2f277c0a38452d8e6de /tmux.h | |
parent | 4de04fac2c9863e7ed972500d2dcc5f7d6d98e3c (diff) | |
download | rtmux-aa8f9018ea16511b4a8da1c33c135495c954a81b.tar.gz rtmux-aa8f9018ea16511b4a8da1c33c135495c954a81b.tar.bz2 rtmux-aa8f9018ea16511b4a8da1c33c135495c954a81b.zip |
Support up, down, left, right movement through panes with -UDLR flags to
select-pane.
Also remove up- and down-pane: equivalent behaviour is now available
using -t :.+ and -t :.-.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.548 2010-03-15 12:51:23 nicm Exp $ */ +/* $Id: tmux.h,v 1.549 2010-03-15 22:03:38 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1831,6 +1831,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 *); |