Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
| * | Some minor style nits. | nicm | 2020-04-09 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-09 | |
|\| | ||||
| * | Wait until the initial command sequence is done before sending a device | nicm | 2020-04-09 | |
| | | | | | | | | | | | | | | attributes request and other bits that prompt a reply from the terminal. This means that stray relies are not left on the terminal if the command has attached and then immediately detached and tmux will not be around to receive them. Prompted by a problem report from espie@. | |||
| * | Restore pane_current_path format from portable tmux, it is no longer | nicm | 2020-04-08 | |
| | | | | | | | | used by default and is very useful. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-07 | |
|\| | ||||
| * | Do not restore history flag if it was never set. | nicm | 2020-04-07 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-06 | |
|\| | ||||
| * | Change copy mode to make copy of the pane history so it does not need to | nicm | 2020-04-06 | |
| | | | | | | | | | | | | freeze updates (which does not play nicely with some applications, a longstanding problem) and will allow some other changes later. From Anindya Mukherjee. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-04-01 | |
|\| | ||||
| * | Support mouse in popups. | nicm | 2020-04-01 | |
| | | ||||
| * | Add a way to mark environment variables as "hidden" so they can be used | nicm | 2020-03-31 | |
| | | | | | | | | by tmux but are not passed into the environment of new panes. | |||
| * | Add non-regex search variants to avoid the performance cost for people | nicm | 2020-03-31 | |
| | | | | | | | | with large histories or long lines. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-31 | |
|\| | ||||
| * | Add a way to mark environment variables as "hidden" so they can be used | nicm | 2020-03-31 | |
| | | | | | | | | by tmux but are not passed into the environment of new panes. | |||
| * | Add non-regex search variants to avoid the performance cost for people | nicm | 2020-03-31 | |
| | | | | | | | | with large histories or long lines. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-31 | |
|\| | ||||
| * | Add a "second click" key type which is fired for the second click of a | nicm | 2020-03-31 | |
| | | | | | | | | | | | | | | double click, even if the timer hasn't expired to confirm it isn't actually a triple click. Provides a way for people who don't care about triple clicks or can make their commands have no side effects to avoid the double click timer delay. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-31 | |
|\| | ||||
| * | Move alternate screen into the screen rather than the pane. | nicm | 2020-03-31 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-30 | |
|\| | ||||
| * | Tweak key numbers to avoid some special keys crossing over with modifier bits. | nicm | 2020-03-30 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-28 | |
|\| | ||||
| * | Make two -E only close popup automatically if the command exited with 0. | nicm | 2020-03-28 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-28 | |
|\| | ||||
| * | Fix how popup height is calculated to take embedded newlines into account. | nicm | 2020-03-28 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-26 | |
|\| | ||||
| * | Add support for overlay popup boxes to show text or output temporarily | nicm | 2020-03-24 | |
| | | | | | | | | | | above the normal layout. These work similarly to menus and are created with the display-popup command. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-21 | |
|\| | ||||
| * | Break code to convert an argument as a percentage into a common function. | nicm | 2020-03-21 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-20 | |
|\| | ||||
| * | Make the mouse_word and mouse_line formats work in copy mode and enable | nicm | 2020-03-20 | |
| | | | | | | | | the default pane menu in copy mode. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-19 | |
|\| | ||||
| * | Change input path so it doesn't require a pane. | nicm | 2020-03-19 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-19 | |
|\| | ||||
| * | Add a flag to run a background process in a pty as well, not used for | nicm | 2020-03-19 | |
| | | | | | | | | anything yet. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-17 | |
|\| | ||||
| * | Ignore default-shell (and use /bin/sh) if it invalid not just if it is | nicm | 2020-03-17 | |
| | | | | | | | | | | tmux itself, also refuse to set the option to something invalid in the first place. GitHub issue 2120. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-16 | |
|\| | ||||
| * | Send mouse down event immediately rather than waiting for double click | nicm | 2020-03-16 | |
| | | | | | | | | | | to finish which would now mean it was out of order. Reported by Mark Kelly. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-12 | |
|\| | ||||
| * | Change how double and triple clicks works so that one or the other is | nicm | 2020-03-12 | |
| | | | | | | | | | | fired - a double click is no longer triggered on the way to a triple click. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-12 | |
|\| | ||||
| * | When the server socket is given by the user with -S, create it with | nicm | 2020-03-12 | |
| | | | | | | | | | | | | umask 177 instead of 117 because it may not be in a safe directory like the default directory in /tmp. The user can chmod it more open after it is created if they want. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-03-11 | |
|\| | | | | | | | | | Also add a check for -lm via AC_SEARCH_LIBS in configure.ac for portablility fixes. | |||
| * | Add some number operators for formats, from Tyler Culp. | nicm | 2020-03-11 | |
| | | ||||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-02-03 | |
|\| | ||||
| * | Instead of passing titles through vis() which doubles backslashes, just | nicm | 2020-02-03 | |
| | | | | | | | | ignore any containing control characters or invalid UTF-8. GitHub issue 2070. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-01-28 | |
|\| | ||||
| * | If ALL clients are readonly, allow them to affect the size, suggested by ↵ | nicm | 2020-01-28 | |
| | | | | | | | | Thomas Sattler. | |||
* | | Merge branch 'obsd-master' | Thomas Adam | 2020-01-28 | |
|\| |