aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2010-03-22 19:07:52 +0000
committerNicholas Marriott <nicm@openbsd.org>2010-03-22 19:07:52 +0000
commit6f04866044e7482c20bd28abd876d173093fa6ac (patch)
tree3cb0a65d0ea702094fe9e4e3d717987d09e5cb58 /tmux.h
parent021037c419b2044f5ba6f9596cc86923ab130309 (diff)
downloadrtmux-6f04866044e7482c20bd28abd876d173093fa6ac.tar.gz
rtmux-6f04866044e7482c20bd28abd876d173093fa6ac.tar.bz2
rtmux-6f04866044e7482c20bd28abd876d173093fa6ac.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 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 45fc18d9..23288425 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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 *);