summaryrefslogtreecommitdiffstats
path: root/cmd-queue.c
AgeCommit message (Expand)Author
2019-06-05If only one of -x or -y is given, use the calculated size for theNicholas Marriott
2019-05-29The line number needs to be updated only after the \n is processed bynicm
2019-05-25Client name can actually be NULL, so use address in that case.nicm
2019-05-25Use client name when logging command queue.nicm
2019-05-23Don't remove group items for group 0 (no group).nicm
2019-05-23Replace the split parser code (cfg.c and cmd-string.c) with a singlenicm
2019-05-20Replace the various identical error callbacks with a single one in cmd-queue.c.nicm
2019-05-18Move the single command flag (CMD_CONTROL) into the shared flags.nicm
2019-05-03Insert after the right element on queue.nicm
2019-05-03Correct ordering when adding after an existing item.nicm
2019-04-26Merge hooks into options and make each one an array option. This allowsnicm
2019-04-17Break new window and pane creation common code from various commands andnicm
2019-03-12Allow multiple modes to be open in a pane. A stack of open modes is keptnicm
2019-03-08Make the mode used to view command output (a variant of copy mode) usenicm
2019-03-07Tidy changing the mode into window_copy_init_for_output.nicm
2017-08-30Pass flags into cmd_find_from_* to fix prefer-unattached, reported bynicm
2017-06-16Tweak some logging.nicm
2017-05-30Rewrite of choose mode, both to simplify and tidy the code and to addnicm
2017-05-01In order that people can use formats like #D in #() in the status linenicm
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store thenicm
2017-04-21Log error properly when no current state, and some other minor tweaks.nicm
2017-04-21Clear shared state if not filling it in.nicm
2017-04-21Make the cmd_find_* functions more obvious when looking for a client,nicm
2017-04-21Style nits and an unused struct.nicm
2017-04-21Store state shared between multiple commands in the queue in a sharednicm
2017-02-03Add a window or pane id "tag" to each format tree and use it to separatenicm
2017-01-05Highlight all occurrences of search string after searching in copy mode.nicm
2016-10-18Give each item on queue a name for better logging.nicm
2016-10-16Provide a way for hooks to tag formats onto the commands they fire sonicm
2016-10-16Mass rename struct cmd_q to struct cmdq_item and related.nicm
2016-10-16Rewrite command queue handling. Each client still has a command queue,nicm
2016-10-15Drain notifys once at the end of the server loop instead of doing itnicm
2016-10-14source-file and some other commands can recurse back into cmdq_continue,nicm
2016-10-13Trying to do hooks generically is way too complicated and unreliable andnicm
2016-10-13Some improvements and bug fixes for hooks:nicm
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.nicm
2016-09-28Couple of vasprintf -> xvasprintf.nicm
2016-04-29Final parts of command hooks, add before- and after- hooks to each command.nicm
2016-01-19Split out getting the current state from the target search so it can benicm
2016-01-19I no longer use my SourceForge address so replace it.nicm
2015-12-16Add infrastructure to work out the best target given a pane or windownicm
2015-12-13If command returns error, report it.nicm
2015-12-13Instead of every command resolving the target (-t or -s) itself, preparenicm
2015-11-27Do not set a limit on the length of commands when printing them.nicm
2015-11-14Push stdout and stderr to clients more aggressively, and add an event tonicm
2015-11-12If we know the terminal outside tmux is not UTF-8, replace UTF-8 innicm
2015-10-20Use client pointer not file descriptor in logging.nicm
2015-09-16Log when cmdq_continue is called.nicm
2015-09-16Rename cmd_q dead flag to a general flags bitmask (will be more flags later).nicm
2015-06-17Break cmdq_continue inner loop into a helper function.nicm