summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/client.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Move the call to setupterm() into the client and have it pass thenicm2021-02-171-14/+34
* Do not care about the server socket closing if exiting anyway.nicm2021-02-121-3/+5
* Add a couple of helper functions, and flush imsgs on exit.nicm2021-02-111-15/+2
* Move file handling protocol stuff all into file.c so it can be reusednicm2021-02-111-256/+19
* Add -N flag to never start server even if command would normally do so,nicm2021-01-171-1/+3
* With csh, a tmux client gets SIGTERM before SIGCONT when killed withnicm2020-10-301-3/+8
* Fix warnings on some platforms with %llx and add a new message to handlenicm2020-09-221-7/+13
* Add a flag to make a client wait for an empty line before exiting innicm2020-06-181-6/+34
* Instead of a buffer size limit on each pane, set a limit of 300 secondsnicm2020-06-101-12/+35
* Instead of sending all data to control mode clients as fast as possible,nicm2020-06-011-7/+11
* Pass the stdout file descriptor from the client as well as stdin and usenicm2020-05-261-1/+6
* imsg.h needs uio.h, pointed out by deraadtnicm2020-05-081-1/+2
* Do not close the stdout file descriptor in control mode as it will benicm2020-04-271-3/+4
* Tidy up the terminal detection and feature code and add named sets ofnicm2020-04-201-5/+6
* Make struct cmd local to cmd.c and move it out of tmux.h.nicm2020-04-131-6/+3
* Some unnecessary assignments and unused variables.nicm2020-04-091-2/+2
* Add to rather than replace flags with -c.nicm2020-03-301-2/+2
* When the server socket is given by the user with -S, create it withnicm2020-03-121-13/+12
* Warn if a message type that is no longer used is received.nicm2020-01-291-1/+7
* Need to include message size in the maximum buffer calculation.nicm2019-12-161-3/+3
* Instead of using large buffers in imsgs, add the data or path onto the end.nicm2019-12-161-18/+32
* Need to check in the error callback also.nicm2019-12-131-1/+4
* Do not spin waiting for exit, instead check in the write callback.nicm2019-12-131-25/+28
* Rewrite the code for reading and writing files. Now, if the client isnicm2019-12-121-64/+268
* Change "lost server" message to "server exited unexpectedly", from Nealnicm2019-07-261-2/+2
* When system calls indicate an error they return -1, not some arbitraryderaadt2019-06-281-2/+2
* Merge cmd_list_parse into cmd-parse.y so it can use the new aliasnicm2019-05-251-8/+8
* Do not use PWD unless it actually matches the real working directory.nicm2018-11-221-5/+3
* Use <fcntl.h> instead of <sys/file.h> for open() and friends.guenther2018-04-261-3/+1
* Prefer PWD for current directory if present in client, from Wei Zhao innicm2018-01-011-5/+5
* Report better error from server when socket create fails, GitHub issuenicm2017-12-191-1/+2
* Do not try to put more in command message than will fit when sendingnicm2017-12-181-1/+5
* Because ignore SIGCHLD early, letting signal_del restore it doesn't worknicm2017-07-141-3/+3
* Move signal code into proc.c.nicm2017-07-121-5/+6
* Make shell_command a global like other stuff rather than making it annicm2017-07-121-11/+9
* Add support for custom command aliases, this is an array option whichnicm2017-01-241-10/+7
* Open /dev/ptm before pledge() and save it to be used for PTMGET laternicm2017-01-231-1/+3
* Print error rather than fatal() if tcgetattr() fails, which is much morenicm2017-01-201-3/+6
* Revert WIP parts of previous I didn't mean to commit yet.nicm2017-01-161-7/+10
* getopt() has a struct option so just return to using options_entry.nicm2017-01-161-10/+7
* Add -E to detach-client to exec a command to replace the client insteadnicm2017-01-131-1/+21
* Remove some dead code in cmd-move-window.c and make a load of localnicm2016-10-031-32/+32
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Don't print error if none to print.nicm2015-11-251-2/+2
* Shell command from -c doesn't have to be global, pass it as an argument.nicm2015-11-241-13/+15
* Do lock failures slightly better, return a special value so we don'tnicm2015-11-241-16/+18
* Actually show something (even if it not that helpful) if the servernicm2015-11-241-10/+19
* Tidy the code that works out the socket path, and just use the full pathnicm2015-11-241-3/+3
* Switch a fprintf to a fatal, and wrap some long lines.nicm2015-11-241-9/+8
* Use __unused rather than rolling our own.nicm2015-11-181-3/+4