diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-12 18:22:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-12 18:22:47 +0000 |
commit | 7cd3cf0eada8513907cd1cc78d7669752235f419 (patch) | |
tree | 387f8f8c1a2976775cd6718812010130d9e27676 /session.c | |
parent | 440a84b2aa0457f9d94903f04055c1b662d41fbc (diff) | |
download | rtmux-7cd3cf0eada8513907cd1cc78d7669752235f419.tar.gz rtmux-7cd3cf0eada8513907cd1cc78d7669752235f419.tar.bz2 rtmux-7cd3cf0eada8513907cd1cc78d7669752235f419.zip |
Make the window pane code handle panes of different sizes, and add a -l and -p arguments to split-window to specify the new window size in lines or as a percentage.
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: session.c,v 1.49 2009-01-10 19:37:35 nicm Exp $ */ +/* $Id: session.c,v 1.50 2009-01-12 18:22:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -197,7 +197,7 @@ session_new(struct session *s, const char *name, const char *cmd, const char *cwd, int idx) { struct window *w; - const char *env[] = { NULL /* TMUX= */, "TERM=screen", NULL }; + const char *env[] = CHILD_ENVIRON; char buf[256]; u_int i, hlimit; |