aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Remove duplicates from completion list, GitHub issue 3178.Nicholas Marriott2022-05-20
|
* Add pane_start_path to match start_command.Nicholas Marriott2022-05-20
|
* Set PWD so shells have a hint about the real path (this was done before butNicholas Marriott2022-05-20
| | | | lost in a merge). GitHub issue 3186.
* Typos, from imcusg at gmail dot com.Nicholas Marriott2022-05-14
|
* Check if args_strtonum argument is NULL or not a string, from AnindyaNicholas Marriott2022-05-14
| | | | Mukherjee.
* Do not allow pipe-pane on dead panes, from Anindya Mukherjee, GitHub issueNicholas Marriott2022-05-02
| | | | 3174.
* Merge branch 'obsd-master'Thomas Adam2022-05-01
|\
| * Fix clearphist alias, from Jacqueline Jolicoeur via jmc@.nicm2022-04-14
| |
* | 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.
* | iTerm2 has OSC 7, from Gregory Anders.Nicholas Marriott2022-04-15
| |
* | On platforms with no way to get peer UID, use getuid(), also fix some failureNicholas Marriott2022-04-06
| | | | | | | | checks.
* | Some style nits.Nicholas Marriott2022-04-06
| |
* | Emit window-layout-changed on swap-pane, from George Nachman.Nicholas Marriott2022-04-06
| |
* | Better error reporting when applying custom layouts.Nicholas Marriott2022-04-06
| |
* | Do not send focus sequences when focus is enabled or disabled by theNicholas Marriott2022-04-06
| | | | | | | | application if it is turned off. GitHub issue 3142.
* | 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.
* | Fix version.Nicholas Marriott2022-04-06
| |
* | Merge remote-tracking branch 'origin/3.3-rc'Nicholas Marriott2022-04-06
|\ \
| * | Add to CHANGES.Nicholas Marriott2022-04-06
| | |
| * | Preserve CRLF flag when respawning.nicm2022-04-06
| | |
| * | man pages: add missing commas between subordinate and main clausesnaddy2022-04-06
| | | | | | | | | | | | | | | | | | | | | jmc@ dislikes a comma before "then" in a conditional, so leave those untouched. ok jmc@
| * | Capture up to used size not available size for each line.nicm2022-04-06
| | |
| * | Report error if creating socket fails with -D.nicm2022-04-06
| | |
| * | Add support for systemd socket activation (where systemd creates the UnixNicholas Marriott2022-04-06
| | | | | | | | | | | | | | | domain socket for tmux rather than tmux creating it). Build with --enable-systemd. From Julien Moutinho in GitHub issue 3119.
| * | Fix exit message if creating socket fails.nicm2022-04-06
| | |
| * | Add unit (milliseconds) to escape-time, show unset colours as "none"nicm2022-04-06
| | | | | | | | | | | | | | | rather than "invalid" and don't show the same text twice for user options in customize mode.
| * | Add a capability for OSC 7 and use it similarly to how the title is setnicm2022-04-06
| | | | | | | | | | | | (and controlled by the same set-titles option). GitHub issue 3127.
| * | Check scroll-on-clear for ED also.nicm2022-04-06
| | |
| * | Add an option (scroll-on-clear) to control if tmux scrolls into historynicm2022-04-06
| | | | | | | | | | | | on clear, from Robert Lange in GitHub issue 3121.
| * | Add an option to set the character used for unused areas of thenicm2022-04-06
| | | | | | | | | | | | terminal, GitHub issue 3110.
| * | With -f use percentages of window size not pane size, GitHub issue 2866.nicm2022-04-06
| | |
| * | Fix user hooks (which are strings not arrays).nicm2022-04-06
| | |
| * | Add remain-on-exit-format to set text shown when pane is dead.nicm2022-04-06
| | |
| * | Add argument to refresh-client -l to forward clipboard to a pane. GitHubnicm2022-04-06
| | | | | | | | | | | | issue 3068.
| * | Add formats for client and server UID and user (for multiuser setups).nicm2022-04-06
| | |
| * | Use getpeerucred if available (not tested).Nicholas Marriott2022-04-06
| | |
| * | Need a declaration for getpeereid also.Nicholas Marriott2022-04-06
| | |
| * | Add getpeerid compat.Nicholas Marriott2022-04-06
| | |
| * | Remove unnecessary declarations.Nicholas Marriott2022-04-06
| | |
| * | Pass client when adding menu item, GitHub issue 3103.nicm2022-04-06
| | |
| * | Allow optional arguments.nicm2022-04-06
| | |
| * | Don't convert codes for special keys (Tab, Enter, Escape).nicm2022-04-06
| | |
| * | Use PATH_MAX instead of MAXPATHLEN.topcat0012022-04-06
| | |
| * | Exit on SIGHUP before attach also, GitHub issue 3084.nicm2022-04-06
| | |
| * | Map control keys back to an ASCII uppercase letter when passing them onnicm2022-04-06
| | | | | | | | | | | | as extended keys.
| * | MAXCOMLEN is no longer needed in these programs, so remove the annotationderaadt2022-04-06
| | | | | | | | | | | | | | | | | | from sys/param.h include lines, or remove the include lines entirely if it this was the least requirement. ok millert
| * | Do not attempt to update focus (and crash) when there is no previous window.nicm2022-04-06
| | |
| * | Add next_session_id format with the next session ID, GitHub issue 3078.nicm2022-04-06
| | |
| * | Initialize copy_width before adjusting it, GitHub issue 3079.nicm2022-04-06
| | |