summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-run-shell.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Return the command client return code with MSG_EXIT now that MSG_ERROR andnicm2010-07-111-2/+5
| | | | | | | MSG_PRINT are unused. New clients should be compatible with old tmux servers but vice versa may print an error.
* Don't die if the client has been detached when the job finishes, justnicm2010-05-251-1/+6
| | | | don't display the output.
* Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in thenicm2009-11-131-2/+2
| | | | command entry structs and a couple of functions to check/set the flags.
* Switch jobs over to use a bufferevent.nicm2009-11-041-21/+23
|
* Add a flag for jobs that shouldn't be freed after they've died and use it fornicm2009-11-011-4/+2
| | | | | | | status jobs, then only kill those jobs when status-left, status-right or set-titles-string is changed. Fixes problems with changing options from inside #().
* Remove a debugging leftover and add copyright.nicm2009-10-111-2/+2
|
* Switch run-shell over to queue the command in the background like #().nicm2009-10-111-38/+81
|
* run-shell command to run a shell command without opening a window, sendingnicm2009-09-201-0/+96
stdout to output mode.