summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/control.c
AgeCommit message (Expand)Author
2022-08-24Check for NULL returns from bufferevent_new.Nicholas Marriott
2022-07-06Defer reading from control client until the command line command hasNicholas Marriott
2021-08-25Fix up some printflike attributes.Nicholas Marriott
2021-08-17Treat a pane that has died the same as no pane when sending data toNicholas Marriott
2020-09-18Some other warnings, GitHub issue 2382.Nicholas Marriott
2020-07-06Add a way for control mode clients to subscribe to a format and beNicholas Marriott
2020-06-18Add a flag to make a client wait for an empty line before exiting inNicholas Marriott
2020-06-12Check if a pane needs to be paused when output is written rather thanNicholas Marriott
2020-06-11Add a -A option to pause a pane manually.Nicholas Marriott
2020-06-10Instead of a buffer size limit on each pane, set a limit of 300 secondsNicholas Marriott
2020-06-10When the pause-after flag is set, send an alternative %extended-outputNicholas Marriott
2020-06-05Add support for pausing a pane when the output buffered for a controlNicholas Marriott
2020-06-02Use CLOCK_MONOTONIC for timer measurement and add a timestamp to controlNicholas Marriott
2020-06-01Remove blocks from queue when pane disappears.Nicholas Marriott
2020-06-01Instead of sending all data to control mode clients as fast as possible,Nicholas Marriott
2020-05-26Pass the stdout file descriptor from the client as well as stdin and useNicholas Marriott
2020-05-24Give control code its own state struct.Nicholas Marriott
2020-05-22Move client offset stuff into control.c since only control clients willNicholas Marriott
2020-05-21Support code for control mode flow control: allow clients to haveNicholas Marriott
2020-04-13Add helpers for the simple case of parse string and add to command queue.Nicholas Marriott
2020-04-13When adding a list of commands to the queue, instead of automaticallyNicholas Marriott
2020-04-13Move cmdq_state into cmd-queue.c.Nicholas Marriott
2020-04-13Rename cmdq_shared to cmdq_state which will better reflect what it isNicholas Marriott
2020-04-13Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make itsNicholas Marriott
2019-12-12Rewrite the code for reading and writing files. Now, if the client isNicholas Marriott
2019-07-09Do not leak empty lines, GitHub issue 1824.Nicholas Marriott
2019-05-31Allow % strings that are all numbers or %s, and fix a double free. BothNicholas Marriott
2019-05-23Replace the split parser code (cfg.c and cmd-string.c) with a singleNicholas Marriott
2019-05-18Move the single command flag (CMD_CONTROL) into the shared flags.Nicholas Marriott
2017-01-15It is silly for cmd_list_parse to return an integer error when it couldNicholas Marriott
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.Nicholas Marriott
2016-10-16Rewrite command queue handling. Each client still has a command queue,Nicholas Marriott
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-11-18Use __unused rather than rolling our own.Nicholas Marriott
2015-11-14Push stdout and stderr to clients more aggressively, and add an event toNicholas Marriott
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingNicholas Marriott
2014-10-20Better format for printf format attributes.Nicholas Marriott
2013-10-10Pass flags into cmdq_guard as an argument since sometimes cmdq->cmd canNicholas Marriott
2013-06-23Mark control commands specially so the client can identify them, basedNicholas Marriott
2013-03-26Fix compiler warnings, missing #include. From Thomas Adam.Nicholas Marriott
2013-03-25Add time and a command count to control mode guards, based on code fromNicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2013-03-22Need to set clients in context before changing their reference count.Nicholas Marriott
2013-03-22Remove unnecessary initializers of cmd_ctx.Nicholas Marriott
2013-03-22Add functions to allocate and free command contexts rather than doing itNicholas Marriott
2012-09-24Add control_write_buffer, from George Nachman.Nicholas Marriott
2012-09-03Send notifications to control clients. Also don't redraw client whenNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2012-06-18Add a skeleton mode to tmux (called "control mode") that let's tmuxNicholas Marriott