mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-09 21:57:37 +02:00
* New session flag "set-remain-on-exit" to set remain-on-exit flag for new windows created in that session (like "remain-by-default" used to do). Not perfectly happy about this, but until I can think of a good way to introduce it generically (maybe a set of options in the session) this will do. Fixes SF request 2527847.
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
/* $Id: session.c,v 1.54 2009-03-07 10:11:20 nicm Exp $ */
|
||||
/* $Id: session.c,v 1.55 2009-03-21 12:44:06 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -210,6 +210,9 @@ session_new(struct session *s,
|
||||
if (w == NULL)
|
||||
return (NULL);
|
||||
|
||||
if (options_get_number(&s->options, "set-remain-on-exit"))
|
||||
options_set_number(&w->options, "remain-on-exit", 1);
|
||||
|
||||
return (session_attach(s, w, idx, cause));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user