summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-queue.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Now that copy mode copies the pane content rather than keeping anicm2020-04-101-3/+5
* Stop logging the entire command queue every time we add something,nicm2020-04-031-9/+1
* Send errors to stdout in control mode so they don't get reordered withnicm2020-01-051-2/+5
* When adding a list with multiple commands to the queue, the next item tonicm2019-12-191-8/+17
* Use the message that has already been built rather than the va_list.nicm2019-12-171-2/+2
* Rewrite the code for reading and writing files. Now, if the client isnicm2019-12-121-21/+15
* Set up format tree for %if, GitHub issue 1896.nicm2019-09-101-2/+1
* Add a cmdq_continue function rather than twiddling the flag directly.nicm2019-06-181-1/+8
* Fix warnings, from Ben Boeckel.nicm2019-05-311-2/+2
* The line number needs to be updated only after the \n is processed bynicm2019-05-291-9/+21
* Client name can actually be NULL, so use address in that case.nicm2019-05-251-2/+5
* Use client name when logging command queue.nicm2019-05-251-3/+3
* Don't remove group items for group 0 (no group).nicm2019-05-231-1/+3
* Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm2019-05-231-12/+4
* Replace the various identical error callbacks with a single one in cmd-queue.c.nicm2019-05-201-1/+20
* Move the single command flag (CMD_CONTROL) into the shared flags.nicm2019-05-181-2/+3
* Insert after the right element on queue.nicm2019-05-031-1/+2
* Correct ordering when adding after an existing item.nicm2019-05-031-16/+10
* Merge hooks into options and make each one an array option. This allowsnicm2019-04-261-2/+56
* Break new window and pane creation common code from various commands andnicm2019-04-171-2/+2
* Allow multiple modes to be open in a pane. A stack of open modes is keptnicm2019-03-121-8/+8
* Make the mode used to view command output (a variant of copy mode) usenicm2019-03-081-8/+11
* Tidy changing the mode into window_copy_init_for_output.nicm2019-03-071-7/+2
* Pass flags into cmd_find_from_* to fix prefer-unattached, reported bynicm2017-08-301-2/+2
* Tweak some logging.nicm2017-06-161-1/+3
* Rewrite of choose mode, both to simplify and tidy the code and to addnicm2017-05-301-2/+3
* In order that people can use formats like #D in #() in the status linenicm2017-05-011-2/+2
* Get rid of the extra layer of flags and cmd_prepare() and just store thenicm2017-04-221-12/+32
* Log error properly when no current state, and some other minor tweaks.nicm2017-04-211-4/+4
* Clear shared state if not filling it in.nicm2017-04-211-1/+4
* Make the cmd_find_* functions more obvious when looking for a client,nicm2017-04-211-5/+6
* Style nits and an unused struct.nicm2017-04-211-4/+3
* Store state shared between multiple commands in the queue in a sharednicm2017-04-211-13/+19
* Add a window or pane id "tag" to each format tree and use it to separatenicm2017-02-031-2/+2
* Highlight all occurrences of search string after searching in copy mode.nicm2017-01-051-2/+1
* Give each item on queue a name for better logging.nicm2016-10-181-4/+16
* Provide a way for hooks to tag formats onto the commands they fire sonicm2016-10-161-2/+25
* Mass rename struct cmd_q to struct cmdq_item and related.nicm2016-10-161-106/+106
* Rewrite command queue handling. Each client still has a command queue,nicm2016-10-161-197/+294
* Drain notifys once at the end of the server loop instead of doing itnicm2016-10-151-6/+2
* source-file and some other commands can recurse back into cmdq_continue,nicm2016-10-141-3/+10
* Trying to do hooks generically is way too complicated and unreliable andnicm2016-10-131-63/+27
* Some improvements and bug fixes for hooks:nicm2016-10-131-17/+29
* Add static in window-*.c and move some internal functions out of tmux.h.nicm2016-10-111-2/+3
* Couple of vasprintf -> xvasprintf.nicm2016-09-281-2/+2
* Final parts of command hooks, add before- and after- hooks to each command.nicm2016-04-291-8/+50
* Split out getting the current state from the target search so it can benicm2016-01-191-2/+2
* I no longer use my SourceForge address so replace it.nicm2016-01-191-2/+2
* Add infrastructure to work out the best target given a pane or windownicm2015-12-161-1/+5
* If command returns error, report it.nicm2015-12-131-1/+3