summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-respawn-pane.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Drop having a separate type for style options and make them all strings,nicm2020-05-161-1/+2
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-4/+5
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-2/+2
* Add a way to mark environment variables as "hidden" so they can be usednicm2020-03-311-2/+2
* Support multiple occurances of the same argument. Use this for a newnicm2019-04-281-4/+14
* Break new window and pane creation common code from various commands andnicm2019-04-171-38/+24
* Allow multiple modes to be open in a pane. A stack of open modes is keptnicm2019-03-121-2/+2
* Add -c for respawn-pane and respawn-window, from J Raynor.nicm2017-07-211-7/+13
* Do not update TERM into config file parsing has finished.nicm2017-04-251-2/+2
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-5/+5
* Move server_fill_environ into environ.c and move some other common codenicm2017-03-091-7/+4
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-10/+10
* Add static in cmd-* and fix a few other nits.nicm2016-10-101-3/+3
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Instead of combined flags for -c, -s, -t, split into different setsnicm2015-12-141-2/+4
* Use member names in cmd_entry definitions so I stop getting confusednicm2015-12-131-6/+9
* Instead of every command resolving the target (-t or -s) itself, preparenicm2015-12-131-10/+6
* Because pledge(2) does not allow us to pass directory file descriptorsnicm2015-10-311-2/+2
* Like options, move the environ struct into environ.c.nicm2015-10-281-11/+11
* Fix some format specifier nits, from Ben Boeckel.nicm2015-03-311-2/+2
* Missed a couple of cmd_entry struct members from previous.nicm2014-10-201-2/+1
* If multiple arguments are given to new-session, new-window,nicm2014-05-131-10/+5
* Set PATH explicitly, either from client or sessionnicm2014-04-171-3/+14
* Pass -1 for cwd now not NULL.nicm2013-10-101-2/+2
* Remove the barely-used and unnecessary command check() function.nicm2013-10-101-2/+1
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-6/+6
* Make command exec functions return an enum rather than -1/0/1 values andnicm2012-07-111-7/+7
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-2/+3
* $Id$ -> $OpenBSD$.nicm2012-03-171-1/+1
* Make window_pane_index work the same as window_index, from Ben Boeckel.nicm2011-11-151-3/+6
* Unused variable.nicm2011-07-091-2/+1
* Use screen_reinit for respawn-pane to keep history and call input_initnicm2011-07-041-5/+2
* Add a respawn-pane command, from Marcel Partap.nicm2011-06-051-0/+92