aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
Commit message (Collapse)AuthorAge
* Merge branch 'obsd-master'Thomas Adam2022-06-07
|\
| * Expand arguments to some commands where it makes sense, GitHub issuenicm2022-06-07
| | | | | | | | 3204 from Anindya Mukherjee.
* | Merge branch 'obsd-master'Thomas Adam2022-06-04
|\|
| * When picking a buffer because one isn't specified by the user, ignorenicm2022-06-04
| | | | | | | | named buffers. GitHub issue 3212 from David le Blanc.
| * If a mouse position was above the maximum supported by the normal mousenicm2022-05-30
| | | | | | | | | | | | | | | | | | protocol (223), tmux was allowing it to wrap around. However, since tmux was not correctly handling this on input, other programs also do not handle it correctly, and the alternative SGR mouse mode is now widespread, this seems unnecessary, so remove this feature. Also define some constants to make it clearer what the numbers mean. Mostly from Leonid S Usov in GitHub issue 3165.
| * Add a way for lines added to copy mode to be passed through the parsernicm2022-05-30
| | | | | | | | to handle escape sequences and use it for run-shell, GitHub issue 3156.
* | If a mouse position was above the maximum supported by the normal mouseNicholas Marriott2022-04-27
| | | | | | | | | | | | | | | | protocol (223), tmux was allowing it to wrap around. However, since tmux was not correctly handling this on input, other programs also do not handle it correctly, and the alternative SGR mouse mode is now widespread, this seems unnecessary, so remove this feature. Also define some constants to make it clearer what the numbers mean. Mostly from Leonid S Usov in GitHub issue 3165.
* | Add a way for lines added to copy mode to be passed through the parser toNicholas Marriott2022-04-18
| | | | | | | | handle escape sequences and use it for run-shell, GitHub issue 3156.
* | Better error reporting when applying custom layouts.Nicholas Marriott2022-04-06
| |
* | Add an ACL list for users connecting to the tmux socket. Users may be forbiddenNicholas Marriott2022-04-06
| | | | | | | | | | | | | | from attaching, forced to attach read-only, or allowed to attach read-write. A new command, server-access, configures the list. tmux gets the user using getpeereid(3) of the client socket. Users must still configure file system permissions manually.
* | Add support for systemd socket activation (where systemd creates the UnixNicholas Marriott2022-03-28
| | | | | | | | | | domain socket for tmux rather than tmux creating it). Build with --enable-systemd. From Julien Moutinho in GitHub issue 3119.
* | Merge branch 'obsd-master' into masterThomas Adam2022-03-24
|\|
| * Add a capability for OSC 7 and use it similarly to how the title is setnicm2022-03-24
| | | | | | | | (and controlled by the same set-titles option). GitHub issue 3127.
* | Merge branch 'obsd-master' into masterThomas Adam2022-03-16
|\|
| * Add an option to set the character used for unused areas of thenicm2022-03-16
| | | | | | | | terminal, GitHub issue 3110.
* | Merge branch 'obsd-master' into masterThomas Adam2022-03-08
|\|
| * Add remain-on-exit-format to set text shown when pane is dead.nicm2022-03-08
| |
* | Merge branch 'obsd-master' into masterThomas Adam2022-03-08
|\|
| * Add argument to refresh-client -l to forward clipboard to a pane. GitHubnicm2022-03-08
| | | | | | | | issue 3068.
* | Merge branch 'obsd-master' into masterThomas Adam2022-02-22
|\|
| * Add next_session_id format with the next session ID, GitHub issue 3078.nicm2022-02-22
| |
* | Merge branch 'obsd-master' into masterThomas Adam2022-02-16
|\|
| * Support more mouse buttons when the terminal sends them, GitHub issuenicm2022-02-16
| | | | | | | | 3055.
* | Merge branch 'obsd-master' into masterThomas Adam2022-02-15
|\|
| * Do not create a buffer from an OSC 52 response if we have not sent anicm2022-02-15
| | | | | | | | query.
* | Merge branch 'obsd-master' into masterThomas Adam2022-02-01
|\|
| * Add option to show arrows for active pane indicator, GitHub issue 3022nicm2022-02-01
| | | | | | | | from Marcel Partap.
* | Merge branch 'obsd-master' into masterThomas Adam2021-12-21
|\|
| * ARM's Morello CHERI architecture does not support pointers in packednicm2021-12-21
| | | | | | | | | | | | structures, so remove the packed attribute on struct grid_line and reorder the members to eliminate unnecessary padding. From Jessica Clarke in GitHub issue 3012.
* | Merge branch 'obsd-master' into masterThomas Adam2021-12-10
|\|
| * Add a NOBLOCK flag rather than adding amount to wait for whennicm2021-12-10
| | | | | | | | dealing with potentially-long sequences. GitHub issue 3001.
* | Merge branch 'obsd-master' into masterThomas Adam2021-12-07
|\|
| * Leave the hardware cursor at the position of the selected line in choosenicm2021-11-15
| | | | | | | | | | | | modes and current editing position and at the command prompt. It is invisible but this is helpful for people using screen readers. GitHub issue 2970.
* | Merge branch 'obsd-master' into masterThomas Adam2021-11-03
|\|
| * Add a cursor-style option, from Alexis Hildebrandt in GitHub issue 2960.nicm2021-11-03
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-11-01
|\|
| * Add a cursor-colour option, from Alexis Hildebrandt in GitHub issuenicm2021-11-01
| | | | | | | | 2959.
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-28
|\|
| * Allow detach even if suspend flag set, GitHub issue 2932.nicm2021-10-28
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-26
|\|
| * Do not allow inline styles to replace mode-style for the selected item,nicm2021-10-26
| | | | | | | | from Alexis Hildebrandt in GitHub issue 2946.
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-26
|\|
| * Add a way to force a colour to RGB and a format to display it.nicm2021-10-25
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-25
|\|
| * Add -s and -S to display-popup to set popup and border style, fromnicm2021-10-25
| | | | | | | | Alexis Hildebrandt in GitHub issue 2931.
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-20
|\|
| * Add -T to set a popup title, from Alexis Hildebrandt in GitHub issue 2941.nicm2021-10-20
| |
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-14
|\|
| * Add popup-border-lines option to set popup line style, from Alexisnicm2021-10-14
| | | | | | | | Hildebrandt, GitHub issue 2930.
* | Merge branch 'obsd-master' into masterThomas Adam2021-10-13
|\|