summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/spawn.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Add split-window -Z to start the pane zoomed, GitHub issue 2591.nicm2021-03-111-2/+5
* Do not use NULL active window; also do not leak window name. GitHubnicm2021-03-021-2/+2
* Drop support for popups where the content is provided directly to tmuxnicm2021-03-021-3/+4
* Check return value of chdir() to stop a silly warning with somenicm2021-02-191-5/+5
* Support code for control mode flow control: allow clients to havenicm2020-05-211-2/+1
* Add a client flag 'active-pane' which stores the active pane in thenicm2020-05-161-1/+2
* Fix a couple of memory leaks, one when creating a new pane and one whennicm2020-04-231-1/+4
* Make client -c and -t handling common in cmd-queue.c and try to benicm2020-04-131-3/+3
* Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsnicm2020-04-131-12/+9
* Add a way to mark environment variables as "hidden" so they can be usednicm2020-03-311-5/+5
* Detach reply escape sequences from the pane so they work in popups.nicm2020-03-311-2/+2
* Change input path so it doesn't require a pane.nicm2020-03-191-2/+3
* Ignore default-shell (and use /bin/sh) if it invalid not just if it isnicm2020-03-171-2/+2
* Use current session for cwd of new sessions, not the new session whichnicm2020-03-021-3/+3
* Set up working directory before killing the existing pane on respawn.nicm2020-01-281-18/+19
* Fix format expansion in window names, reported by Suraj N Kurapati.nicm2020-01-011-2/+5
* Make a best effort to set xpixel and ypixel for each pane and addnicm2019-11-281-4/+7
* Add an option to set the key sent by backspace for those whose systemnicm2019-11-141-3/+8
* Fix respawn-pane/window if default-command is set, reported by Janos Barbero.nicm2019-10-071-2/+2
* Use the correct size for new windows when window-size is latest,nicm2019-09-231-2/+2
* Add a "latest" window-size option which tries to size windows based onnicm2019-09-191-1/+2
* Do not set uninitialized signal mask when creating an empty pane.nicm2019-09-181-9/+9
* Do not double free window if pane fails to start.nicm2019-06-301-4/+2
* Fix crash when killing the current window, reported by Jesus Rafaelnicm2019-05-271-1/+3
* Make cmd_log_argv take a printf-like format for the prefix.nicm2019-05-251-2/+2
* Allow panes to be empty (no command), output can be piped to them withnicm2019-05-031-20/+30
* Support multiple occurances of the same argument. Use this for a newnicm2019-04-281-1/+3
* Break new window and pane creation common code from various commands andnicm2019-04-171-0/+434