aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2010-12-11 18:42:20 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2010-12-11 18:42:20 +0000
commit5fcd6711e4319a03349a9506d646767c73a5381a (patch)
tree13ecf2ecd2e73ee38e644ed069be19c5b31ed257 /tmux.h
parentd227a2e661f32d3b5058357872ae3cf797d3cd42 (diff)
downloadrtmux-5fcd6711e4319a03349a9506d646767c73a5381a.tar.gz
rtmux-5fcd6711e4319a03349a9506d646767c73a5381a.tar.bz2
rtmux-5fcd6711e4319a03349a9506d646767c73a5381a.zip
Track the last session for a client and add a flag to switch-client and
a key binding (L) to move a client back to its last session.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 84763bc7..e00a1837 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.586 2010-12-11 16:15:02 nicm Exp $ */
+/* $Id: tmux.h,v 1.587 2010-12-11 18:42:20 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1153,6 +1153,7 @@ struct client {
struct mode_key_data prompt_mdata;
struct session *session;
+ u_int last_session;
int references;
};