summaryrefslogtreecommitdiffstats
path: root/cmd-run-shell.c
AgeCommit message (Expand)Author
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
2018-08-27Memory leaks, from Gang Fan in GitHub issue 1453.nicm
2018-08-23Move job struct into job.c.nicm
2018-05-24Make server_client_get_cwd used (almost) everywhere we need to work outnicm
2018-03-08Add a missing client-detached hook when the server shuts down, and donicm
2017-08-30Pass flags into cmd_find_from_* to fix prefer-unattached, reported bynicm
2017-05-30Rewrite of choose mode, both to simplify and tidy the code and to addnicm
2017-04-22Get rid of the extra layer of flags and cmd_prepare() and just store thenicm
2017-04-21Make the cmd_find_* functions more obvious when looking for a client,nicm
2017-04-20If a #() command doesn't exit, use its most recent line of output (itnicm
2017-03-08Add a helper function for the most common format_create/defaults/expandnicm
2017-02-16Style nits.nicm
2017-02-03Add a window or pane id "tag" to each format tree and use it to separatenicm
2016-11-12Apply the right fix for run -b, used the wrong diff before.nicm
2016-11-11Do not crash with run-shell -b and no window pane available, reported bynicm
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-15Only use pane with run-shell if -t is given.nicm
2016-10-10Add static in cmd-* and fix a few other nits.nicm
2016-10-09Pass file/line to new command for if-shell so that errors appearnicm
2016-02-12Expand client formats in run-shell.nicm
2015-12-14Instead of combined flags for -c, -s, -t, split into different setsnicm
2015-12-13Use member names in cmd_entry definitions so I stop getting confusednicm
2015-12-13Instead of every command resolving the target (-t or -s) itself, preparenicm
2015-12-11Add cmdq as an argument to format_create and add a format for thenicm
2015-12-08Remove format_create_flags and just pass flags to format_create.nicm
2015-10-31Because pledge(2) does not allow us to pass directory file descriptorsnicm
2015-09-16Rename cmd_q dead flag to a general flags bitmask (will be more flags later).nicm
2015-04-24Set working directory for run-shell and if-shell.nicm
2015-02-05Wrap all the individual format_* calls in a single format_defaultsnicm
2014-10-20Instead of setting up the default keys by building the key structnicm
2014-04-17Remove the "info" message mechanism, this was only used for about fivenicm
2013-10-10Remove the barely-used and unnecessary command check() function.nicm
2013-03-25Try to establish client for run-shell and if-shell if no -t.Nicholas Marriott
2013-03-25Extend jobs to support writing and use that for copy-pipe instead ofNicholas Marriott
2013-03-24Add a command queue to standardize and simplify commands that call otherNicholas Marriott
2013-03-24Expand format variables in the run-shell and if-shell shell commands,Nicholas Marriott
2013-03-22evbuffer_readline returns allocated storage, don't leak it.Nicholas Marriott
2013-03-22Add functions to allocate and free command contexts rather than doing itNicholas Marriott
2012-11-27Allow cmd-run-shell to accept -t to specify the pane to display theNicholas Marriott
2012-07-11Make command exec functions return an enum rather than -1/0/1 values andNicholas Marriott
2012-07-10xfree is not particularly helpful, remove it. From Thomas Adam.Nicholas Marriott
2011-01-26Simplify the way jobs work and drop the persist type, so all jobs areNicholas Marriott
2011-01-04Clean up and simplify tmux command argument parsing.Nicholas Marriott
2010-07-24When changing so that the client passes its stdout and stderr as well asNicholas Marriott
2010-07-11Return the command client return code with MSG_EXIT now that MSG_ERROR andNicholas Marriott
2010-05-25Don't die if the client has been detached when the job finishes, justNicholas Marriott
2009-11-13Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in theNicholas Marriott