aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-10-24 01:34:30 +0000
committerTiago Cunha <tcunha@gmx.com>2010-10-24 01:34:30 +0000
commitcd079e8fbfb6e2606e000f5357ef3a5cec2f3fe3 (patch)
treeaed55d5695f85f29356246e170ad09fd385d8324 /tmux.h
parent8703e9f2f90e52ca69b7126f1aa03b48f86a67f6 (diff)
downloadrtmux-cd079e8fbfb6e2606e000f5357ef3a5cec2f3fe3.tar.gz
rtmux-cd079e8fbfb6e2606e000f5357ef3a5cec2f3fe3.tar.bz2
rtmux-cd079e8fbfb6e2606e000f5357ef3a5cec2f3fe3.zip
Sync OpenBSD patchset 780:
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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index d20888cf..624694f4 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.580 2010-10-24 01:31:08 tcunha Exp $ */
+/* $Id: tmux.h,v 1.581 2010-10-24 01:34:30 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -830,6 +830,7 @@ struct window {
struct event name_timer;
struct window_pane *active;
+ struct window_pane *last;
struct window_panes panes;
int lastlayout;
@@ -1505,6 +1506,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;