diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2010-06-27 02:56:59 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2010-06-27 02:56:59 +0000 |
commit | 07a71fd432df5873515da82d2d620ec0d986b558 (patch) | |
tree | a4a9064b09cfc31f1ec1f49adb7e1f7b8308eaed /tmux.h | |
parent | 26524c99f68959b5a0d1698529f332934061d424 (diff) | |
download | rtmux-07a71fd432df5873515da82d2d620ec0d986b558.tar.gz rtmux-07a71fd432df5873515da82d2d620ec0d986b558.tar.bz2 rtmux-07a71fd432df5873515da82d2d620ec0d986b558.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 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -926,6 +926,7 @@ TAILQ_HEAD(session_groups, session_group); struct session { char *name; + char *cwd; struct timeval creation_time; struct timeval activity_time; |