diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-30 21:17:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-30 21:17:06 +0000 |
commit | 044e6f766017cb065fdd4f8db492e1b29cd8b87d (patch) | |
tree | cf7694b60ada53e488cd34e110857060dc533384 /tmux.h | |
parent | a6f2d8233569b4dcb6e26935b33b20f796ce958c (diff) | |
download | rtmux-044e6f766017cb065fdd4f8db492e1b29cd8b87d.tar.gz rtmux-044e6f766017cb065fdd4f8db492e1b29cd8b87d.tar.bz2 rtmux-044e6f766017cb065fdd4f8db492e1b29cd8b87d.zip |
previous-layout command.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.308 2009-04-30 20:54:53 nicm Exp $ */ +/* $Id: tmux.h,v 1.309 2009-04-30 21:17:06 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1216,6 +1216,7 @@ extern const struct cmd_entry cmd_new_window_entry; extern const struct cmd_entry cmd_next_layout_entry; extern const struct cmd_entry cmd_next_window_entry; extern const struct cmd_entry cmd_paste_buffer_entry; +extern const struct cmd_entry cmd_previous_layout_entry; extern const struct cmd_entry cmd_previous_window_entry; extern const struct cmd_entry cmd_refresh_client_entry; extern const struct cmd_entry cmd_rename_session_entry; @@ -1546,6 +1547,7 @@ void window_pane_mouse(struct window_pane *, const char * layout_name(struct window *); void layout_refresh(struct window *, int); void layout_next(struct window *); +void layout_previous(struct window *); /* window-clock.c */ extern const struct window_mode window_clock_mode; |