Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-07-04 | |
|\| | ||||
| * | Add accessors for grid linedata member, for some future work. From Dan | nicm | 2018-07-04 | |
| | | | | | | | | Aloni. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-06-27 | |
|\| | ||||
| * | Allow any punctuation (except :) as separator in s/x/y/, not only | nicm | 2018-06-27 | |
| | | | | | | | | /. From JINNOUCHI Yasushi in GitHub issue 1386. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-05-29 | |
|\| | ||||
| * | If foo doesn't exist and can't be expanded in #{?foo,a,b} then assume it | nicm | 2018-05-29 | |
| | | | | | | | | is false. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-05-22 | |
|\| | ||||
| * | Allow escaping , and } with # in #{}; GitHub issue 1332. | nicm | 2018-05-22 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-04-18 | |
|\| | ||||
| * | Change how display-message uses the client. Originally it was only | nicm | 2018-04-18 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | intended as the target client where the message should be displayed but at some point (perhaps when -p was added), it was used for format expansion too. This means it can get a bit weird where you have client formats expanding for a client with a different current session than the target session. However, it is nice that display-message can be used to show information about a specific client. So change so that the -c client will be used if the session matches the target session (-t or default), otherwise the best client will be chosen. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-03-08 | |
|\| | ||||
| * | Add a missing client-detached hook when the server shuts down, and do | nicm | 2018-03-08 | |
| | | | | | | | | | | not exit until jobs started from run-shell/if-shell have finished (add a job flags member and a flag to indicate other jobs). GitHub issue 1245. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-02-20 | |
|\| | ||||
| * | Do not leak memory when working out job name in formats. | nicm | 2018-02-20 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2018-01-18 | |
|\| | ||||
| * | Discard all but the last line when reading from a #() command - the | nicm | 2018-01-18 | |
| | | | | | | | | | | callback is just going to be fired again straight away to go through all the lines, it is better just to use the last one straight away. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-11-02 | |
|\| | ||||
| * | Format for group list of "other sessions" is a bit weird, just list all | nicm | 2017-11-02 | |
| | | | | | | | | the sessions in the group. | |||
| * | Tweak previous slightly so that current session is chosen if it is in | nicm | 2017-11-02 | |
| | | | | | | | | the group rather than first. | |||
| * | Only show the first member of session groups in tree mode (-G flag | nicm | 2017-11-02 | |
| | | | | | | | | disables). | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-10-20 | |
|\| | | | | | | | | | Conflicts: server-fn.c | |||
| * | Show exit status and time in the remain-on-exit pane text, mostly from | nicm | 2017-10-12 | |
| | | | | | | | | Timo Boettcher in GitHub issue 1103. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-08-09 | |
|\| | | | | | | | | | Conflicts: tmux.1 | |||
| * | Add -F to choose-tree, choose-client, choose-buffer to specify the | nicm | 2017-08-09 | |
| | | | | | | | | | | format of each line, as well as adding a couple of formats needed for the default display. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-08-02 | |
|\| | ||||
| * | Add selection_present format so commands in copy mode can use it, GitHub | nicm | 2017-08-02 | |
| | | | | | | | | issue 1028. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-07-27 | |
|\| | ||||
| * | Add pane_at_left/right/top/bottom formats, from Amos Bird. | nicm | 2017-07-27 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-07-07 | |
|\| | ||||
| * | Add a pane_pipe format to show if pipe-pane is active, GitHub issue 990. | nicm | 2017-07-07 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-06-01 | |
|\| | | | | | | | | | Conflicts: window-buffer.c | |||
| * | Style and spacing nits. | nicm | 2017-05-31 | |
| | | ||||
* | | Differences to OpenBSD. | Nicholas Marriott | 2017-05-31 | |
| | | ||||
* | | Build fixes. | Nicholas Marriott | 2017-05-31 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-31 | |
|\| | | | | | | | | | | | | | Conflicts: Makefile.am cfg.c server-client.c | |||
| * | Rewrite of choose mode, both to simplify and tidy the code and to add | nicm | 2017-05-30 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | some modern features. Now the common code is in mode-tree.c, which provides an API used by the three modes now separated into window-{buffer,client,tree}.c. Buffer mode shows buffers, client mode clients and tree mode a tree of sessions, windows and panes. Each mode has a common set of key bindings plus a few that are specific to the mode. Other changes are: - each mode has a preview pane: for buffers this is the buffer content (very useful), for others it is a preview of the pane; - items may be sorted in different ways ('O' key); - multiple items may be tagged and an operation applied to all of them (for example, to delete multiple buffers at once); - in tree mode a command may be run on the selected item (session, window, pane) or on tagged items (key ':'); - displayed items may be filtered in tree mode by using a format (this is used to implement find-window) (key 'f'); - the custom format (-F) for the display is no longer available; - shortcut keys change from 0-9, a-z, A-Z which was always a bit weird with keys used for other uses to 0-9, M-a to M-z. Now that the code is simpler, other improvements will come later. Primary key bindings for each mode are documented under the commands in the man page (choose-buffer, choose-client, choose-tree). Parts written by Thomas Adam. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-29 | |
|\| | ||||
| * | Add ||, && format operators and C: to search pane content. | nicm | 2017-05-29 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-29 | |
|\| | ||||
| * | Add m: for fnmatch(3) format matching. | nicm | 2017-05-29 | |
| | | ||||
* | | Missed during merge. | Nicholas Marriott | 2017-05-16 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-13 | |
|\| | ||||
| * | Remove an unused variable. | nicm | 2017-05-12 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-12 | |
|\| | ||||
| * | Only redraw single client, and tweak some logging. | nicm | 2017-05-12 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-12 | |
|\| | ||||
| * | Store copy mode search string in pane so search-again command works even | nicm | 2017-05-12 | |
| | | | | | | | | | | if you exit and reenter copy mode (it doesn't remember the position, just the search string), suggested by espie@. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2017-05-09 | |
|\| | | | | | | | | | Conflicts: format.c | |||
| * | Add a format for the name of the pane's mode, lets it be used as a | nicm | 2017-05-07 | |
| | | | | | | | | conditional for key bindings. | |||
| * | Add some formats to look at the session window stack, suggested by Scott | nicm | 2017-05-05 | |
| | | | | | | | | ROCHFORD. |