diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-05-16 11:48:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-05-16 11:48:47 +0000 |
commit | 100190214314cbcbdcf5cf4bb462e218a460b88e (patch) | |
tree | b3db7d4b7db806803d5beef7b2a4b3f67c0bc782 /tmux.h | |
parent | 03af7c99b58d65cd9ec0a95e02658c152e18f41e (diff) | |
download | rtmux-100190214314cbcbdcf5cf4bb462e218a460b88e.tar.gz rtmux-100190214314cbcbdcf5cf4bb462e218a460b88e.tar.bz2 rtmux-100190214314cbcbdcf5cf4bb462e218a460b88e.zip |
select-layout command and some key bindings.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.317 2009-05-16 10:02:51 nicm Exp $ */ +/* $Id: tmux.h,v 1.318 2009-05-16 11:48:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1249,6 +1249,7 @@ extern const struct cmd_entry cmd_respawn_window_entry; extern const struct cmd_entry cmd_rotate_window_entry; extern const struct cmd_entry cmd_save_buffer_entry; extern const struct cmd_entry cmd_scroll_mode_entry; +extern const struct cmd_entry cmd_select_layout_entry; extern const struct cmd_entry cmd_select_pane_entry; extern const struct cmd_entry cmd_select_prompt_entry; extern const struct cmd_entry cmd_select_window_entry; @@ -1568,7 +1569,9 @@ void window_pane_mouse(struct window_pane *, /* layout.c */ const char * layout_name(struct window *); +int layout_lookup(const char *); void layout_refresh(struct window *, int); +int layout_select(struct window *, u_int); void layout_next(struct window *); void layout_previous(struct window *); |