diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-11 18:42:20 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2010-12-11 18:42:20 +0000 |
commit | 5fcd6711e4319a03349a9506d646767c73a5381a (patch) | |
tree | 13ecf2ecd2e73ee38e644ed069be19c5b31ed257 /tmux.h | |
parent | d227a2e661f32d3b5058357872ae3cf797d3cd42 (diff) | |
download | rtmux-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.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; }; |