summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/control.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Rewrite the code for reading and writing files. Now, if the client isnicm2019-12-121-19/+19
* Do not leak empty lines, GitHub issue 1824.nicm2019-07-091-1/+2
* Allow % strings that are all numbers or %s, and fix a double free. Bothnicm2019-05-311-2/+1
* Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm2019-05-231-9/+15
* Move the single command flag (CMD_CONTROL) into the shared flags.nicm2019-05-181-4/+2
* It is silly for cmd_list_parse to return an integer error when it couldnicm2017-01-151-2/+3
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-13/+13
* Rewrite command queue handling. Each client still has a command queue,nicm2016-10-161-10/+21
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Use __unused rather than rolling our own.nicm2015-11-181-2/+2
* Push stdout and stderr to clients more aggressively, and add an event tonicm2015-11-141-3/+3
* Rewrite of tmux mouse support which was a mess. Instead of havingnicm2015-04-191-2/+2
* Better format for printf format attributes.nicm2014-10-201-2/+2
* Pass flags into cmdq_guard as an argument since sometimes cmdq->cmd cannicm2013-10-101-3/+3
* Mark control commands specially so the client can identify them, basednicm2013-06-231-1/+4
* Fix compiler warnings, missing #include. From Thomas Adam.nicm2013-03-261-1/+2
* Add time and a command count to control mode guards, based on code fromnicm2013-03-251-3/+8
* Add a command queue to standardize and simplify commands that call othernicm2013-03-241-50/+3
* Need to set clients in context before changing their reference count.nicm2013-03-221-3/+2
* Remove unnecessary initializers of cmd_ctx.nicm2013-03-221-4/+1
* Add functions to allocate and free command contexts rather than doing itnicm2013-03-221-9/+11
* Add control_write_buffer, from George Nachman.nicm2012-09-241-1/+10
* Send notifications to control clients. Also don't redraw client whennicm2012-09-031-2/+1
* xfree is not particularly helpful, remove it. From Thomas Adam.nicm2012-07-101-3/+4
* Add a skeleton mode to tmux (called "control mode") that let's tmuxnicm2012-06-181-0/+121