previous-layout command.

This commit is contained in:
Nicholas Marriott
2009-04-30 21:17:06 +00:00
parent a6f2d82335
commit 044e6f7660
9 changed files with 96 additions and 24 deletions

4
tmux.h
View File

@ -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;