summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/cmd-queue.c
AgeCommit message (Expand)Author
2017-08-30Pass flags into cmd_find_from_* to fix prefer-unattached, reported byNicholas Marriott
2017-06-16Tweak some logging.Nicholas Marriott
2017-05-30Rewrite of choose mode, both to simplify and tidy the code and to addNicholas Marriott
2017-05-01In order that people can use formats like #D in #() in the status lineNicholas Marriott
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store theNicholas Marriott
2017-04-21Log error properly when no current state, and some other minor tweaks.Nicholas Marriott
2017-04-21Clear shared state if not filling it in.Nicholas Marriott
2017-04-21Make the cmd_find_* functions more obvious when looking for a client,Nicholas Marriott
2017-04-21Style nits and an unused struct.Nicholas Marriott
2017-04-21Store state shared between multiple commands in the queue in a sharedNicholas Marriott
2017-02-03Add a window or pane id "tag" to each format tree and use it to separateNicholas Marriott
2017-01-05Highlight all occurrences of search string after searching in copy mode.Nicholas Marriott
2016-10-18Give each item on queue a name for better logging.Nicholas Marriott
2016-10-16Provide a way for hooks to tag formats onto the commands they fire soNicholas 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-10-15Drain notifys once at the end of the server loop instead of doing itNicholas Marriott
2016-10-14source-file and some other commands can recurse back into cmdq_continue,Nicholas Marriott
2016-10-13Trying to do hooks generically is way too complicated and unreliable andNicholas Marriott
2016-10-13Some improvements and bug fixes for hooks:Nicholas Marriott
2016-10-11Add static in window-*.c and move some internal functions out of tmux.h.Nicholas Marriott
2016-09-28Couple of vasprintf -> xvasprintf.Nicholas Marriott
2016-04-29Final parts of command hooks, add before- and after- hooks to each command.Nicholas Marriott
2016-01-19Split out getting the current state from the target search so it can beNicholas Marriott
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-12-16Add infrastructure to work out the best target given a pane or windowNicholas Marriott
2015-12-13If command returns error, report it.Nicholas Marriott
2015-12-13Instead of every command resolving the target (-t or -s) itself, prepareNicholas Marriott
2015-11-27Do not set a limit on the length of commands when printing them.Nicholas Marriott
2015-11-14Push stdout and stderr to clients more aggressively, and add an event toNicholas Marriott
2015-11-12If we know the terminal outside tmux is not UTF-8, replace UTF-8 inNicholas Marriott
2015-10-20Use client pointer not file descriptor in logging.Nicholas Marriott
2015-09-16Log when cmdq_continue is called.Nicholas Marriott
2015-09-16Rename cmd_q dead flag to a general flags bitmask (will be more flags later).Nicholas Marriott
2015-06-17Break cmdq_continue inner loop into a helper function.Nicholas Marriott
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingNicholas Marriott
2015-02-12Take a reference to prevent cmdq being freed during the command. CanNicholas Marriott
2015-02-05There is no need to save the guard state because the function checks itNicholas Marriott
2014-10-27Move cfg_causes local into cfg.c and remove struct causelist.Nicholas Marriott
2014-10-21Save next item after firing command in case it has added to the queue.Nicholas Marriott
2014-10-20Better format for printf format attributes.Nicholas Marriott
2014-09-01Various minor style and spacing nits.Nicholas Marriott
2014-04-17Remove the "info" message mechanism, this was only used for about fiveNicholas Marriott
2014-01-09Remove unnecessary calls to va_start/va_end, from Tiago Cunha.Nicholas Marriott
2013-10-10Alter how tmux handles the working directory to internally use fileNicholas Marriott
2013-10-10retcode -> retval for exit message.Nicholas Marriott
2013-10-10Support -c for new-session, based on code from J Raynor.Nicholas Marriott
2013-10-10Make cmdq->client_exit a tristate (-1 means "not set") so that ifNicholas 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