diff options
author | 2010-06-27 02:56:59 +0000 | |
---|---|---|
committer | 2010-06-27 02:56:59 +0000 | |
commit | b511d510a09413145818b4cf53af1265e4a04989 (patch) | |
tree | 5e836082a433825efe67fca5420571fd8e28df15 /usr.bin/tmux/tmux.h | |
parent | mpii was modelled very heavily on mpi which means that it inherited a split (diff) | |
download | wireguard-openbsd-b511d510a09413145818b4cf53af1265e4a04989.tar.xz wireguard-openbsd-b511d510a09413145818b4cf53af1265e4a04989.zip |
Store the current working directory in the session, change the default-path
option to default to empty and make that mean that the stored session CWD is
used.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index d10baf752f9..0767b4acf6d 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.229 2010/06/26 18:20:53 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.230 2010/06/27 02:56:59 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -926,6 +926,7 @@ TAILQ_HEAD(session_groups, session_group); struct session { char *name; + char *cwd; struct timeval creation_time; struct timeval activity_time; |