Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge branch 'obsd-master' into master | Thomas Adam | 2021-08-21 |
|\ | |||
| * | Add args parsing callback for some future work, currently unused. | nicm | 2021-08-21 |
| | | |||
* | | Merge branch 'obsd-master' into master | Thomas Adam | 2021-08-20 |
|\| | |||
| * | Hide struct args behind a couple of accessor functions. | nicm | 2021-08-20 |
| | | |||
* | | Merge branch 'obsd-master' into master | Thomas Adam | 2021-08-17 |
|\| | |||
| * | Fix pipe-pane usage. | nicm | 2021-08-17 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-05-21 |
|\| | |||
| * | Support code for control mode flow control: allow clients to have | nicm | 2020-05-21 |
| | | | | | | | | | | | | separate offsets (used and acknowleged) into the pane buffers; turn off reading from panes when no clients can accept the data; and add a -A flag to refresh-client to let clients turn receiving a pane on and off. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-14 |
|\| | |||
| * | Make client -c and -t handling common in cmd-queue.c and try to be | nicm | 2020-04-13 |
| | | | | | | | | | | clearer about whether the client is the target client (must have a session) or not. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-13 |
|\| | |||
| * | Also move cmdq_item and cmdq_list into cmd-queue.c (this is to make its | nicm | 2020-04-13 |
| | | | | | | | | use more clearly defined and preparation for some future work). | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-13 |
|\| | |||
| * | Make struct cmd local to cmd.c and move it out of tmux.h. | nicm | 2020-04-13 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2019-03-18 |
|\| | |||
| * | Store the time in the format tree rather than passing it around. | nicm | 2019-03-14 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2019-03-14 |
|\| | |||
| * | Accept 0 time as a shorthand for now to format_expand_time. | nicm | 2019-03-14 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-11-30 |
|\| | |||
| * | Clear PANE_EXITED flag when starting new child process in case the pane | nicm | 2018-11-30 |
| | | | | | | | | has been respawned. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-11-19 |
|\| | |||
| * | evbuffer_new and bufferevent_new can both fail (when malloc fails) and | nicm | 2018-11-19 |
| | | | | | | | | return NULL. GitHub issue 1547. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-01-17 |
|\| | |||
| * | Add -I to pipe-pane to connect pane stdin as well as stdout, suggested | nicm | 2018-01-16 |
| | | | | | | | | by Kristof Kovacs in GitHub issue 1186. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-07-14 |
|\| | |||
| * | Because ignore SIGCHLD early, letting signal_del restore it doesn't work | nicm | 2017-07-14 |
| | | | | | | | | | | correctly, so set it explicitly back to default (and the others for good measure). | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-07-12 |
|\| | | | | | | | | | | | | | | | Conflicts: cmd-pipe-pane.c proc.c tmux.c window.c | ||
| * | Block signals between forking and clearing signal handlers (or calling | nicm | 2017-07-12 |
| | | | | | | | | | | | | event_reinit) - if the child gets a signal and fires the libevent signal handler during this period it could write a signal into the parent's signal pipe. GitHub issue 1001 from Aaron van Geffen. | ||
| * | Move signal code into proc.c. | nicm | 2017-07-12 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-07-03 |
|\| | |||
| * | Do not close panes until process has exited and any outstanding data | nicm | 2017-07-03 |
| | | | | | | | | has been written to the pipe-pane event if there is one. GitHub issue 991. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-01 |
|\| | |||
| * | In order that people can use formats like #D in #() in the status line | nicm | 2017-05-01 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | and not have to wait for an update when they change pane, we allow commands to run more than once a second if the expanded form changes. Unfortunately this can mean them being run far too often (pretty much continually) when multiple clients exist, because some formats (including #D) will always differ between clients. To avoid this, give each client its own tree of jobs which means that the same command will be different instances for each client - similar to how we have the tag to separate commands for different panes. GitHub issue 889; test case reported by Paul Johnson. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-04-22 |
|\| | |||
| * | Get rid of the extra layer of flags and cmd_prepare() and just store the | nicm | 2017-04-22 |
| | | | | | | | | | | | | CMD_FIND_* flags in the cmd_entry and call it for the command. Commands with special requirements call it themselves and update the target for hooks to use. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-02-03 |
|\| | |||
| * | Add a window or pane id "tag" to each format tree and use it to separate | nicm | 2017-02-03 |
| | | | | | | | | | | | | jobs, this means that if the same job is used for different windows or panes (for example in pane-border-format), it will be run separately for each pane. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-10-16 |
|\| | |||
| * | Mass rename struct cmd_q to struct cmdq_item and related. | nicm | 2016-10-16 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-10-15 |
|\| | |||
| * | Add CMD_AFTERHOOK flag to the easy commands that don't need any special ↵ | nicm | 2016-10-14 |
| | | | | | | | | handling. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-10-12 |
|\| | | | | | | | | | | | Conflicts: format.c osdep-openbsd.c | ||
| * | Add static in cmd-* and fix a few other nits. | nicm | 2016-10-10 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2016-01-19 |
|\| | |||
| * | I no longer use my SourceForge address so replace it. | nicm | 2016-01-19 |
| | | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-12-14 |
|\| | |||
| * | Instead of combined flags for -c, -s, -t, split into different sets | nicm | 2015-12-14 |
| | | | | | | | | using an enum and simplify the parsing code. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-12-13 |
|\| | |||
| * | Use member names in cmd_entry definitions so I stop getting confused | nicm | 2015-12-13 |
| | | | | | | | | about the order. | ||
* | | Merge branch 'obsd-master' | Thomas Adam | 2015-12-13 |
|\| |