diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-10-23 13:04:34 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-10-23 13:04:34 +0000 |
commit | 5de84eca3dbaa7b9fcc378a58198ced8a2d95a3e (patch) | |
tree | a253452ab5ec7f758f1b92466c2bad623b72e5a6 /tmux.h | |
parent | a3efd2ab5aa80757dff1570444faae927ece15b8 (diff) | |
download | rtmux-5de84eca3dbaa7b9fcc378a58198ced8a2d95a3e.tar.gz rtmux-5de84eca3dbaa7b9fcc378a58198ced8a2d95a3e.tar.bz2 rtmux-5de84eca3dbaa7b9fcc378a58198ced8a2d95a3e.zip |
Add a last-pane command (bound to ; by default). Requested ages ago by
somebody whose name I have forgotten.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -832,6 +832,7 @@ struct window { struct event name_timer; struct window_pane *active; + struct window_pane *last; struct window_panes panes; int lastlayout; @@ -1507,6 +1508,7 @@ extern const struct cmd_entry cmd_kill_pane_entry; extern const struct cmd_entry cmd_kill_server_entry; extern const struct cmd_entry cmd_kill_session_entry; extern const struct cmd_entry cmd_kill_window_entry; +extern const struct cmd_entry cmd_last_pane_entry; extern const struct cmd_entry cmd_last_window_entry; extern const struct cmd_entry cmd_link_window_entry; extern const struct cmd_entry cmd_list_buffers_entry; |