Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Move alternate screen into the screen rather than the pane. | nicm | 2020-03-31 |
| | |||
* | Change input path so it doesn't require a pane. | nicm | 2020-03-19 |
| | |||
* | 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. | ||
* | Do not send DA and DSR again if already have a response. | nicm | 2020-01-29 |
| | |||
* | Add support for the iTerm2 DSR 1337 sequence to get the terminal version. | nicm | 2020-01-28 |
| | |||
* | Bump the escape sequence timeout to five seconds to allow for longer | nicm | 2019-11-28 |
| | | | | legitimate sequences. | ||
* | Do not add path if it is NULL, duh. | nicm | 2019-11-15 |
| | |||
* | Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path). | nicm | 2019-11-15 |
| | |||
* | Change new-session -A without a session name (that is, no -s option | nicm | 2019-11-14 |
| | | | | | also) to attach to the best existing session like attach-session rather than creating a new one. | ||
* | Handle the various different forms of rgb colour strings. | nicm | 2019-11-01 |
| | |||
* | Turn automatic-rename back on if the rename escape sequence is used with | nicm | 2019-10-14 |
| | | | | an empty name, GitHub issue 1921. | ||
* | Style and line length nits. | nicm | 2019-09-25 |
| | |||
* | Some minor performance improvements - most notably, don't search the | nicm | 2019-09-24 |
| | | | | input state table if the next character matches the same state as before. | ||
* | Add support for the SD (scroll down) escape sequence, GitHub issue 1861. | nicm | 2019-08-05 |
| | |||
* | Add support for underscore colours with Setulc capability, mostly from | nicm | 2019-06-27 |
| | | | | Kai Moschcau. | ||
* | allow-rename and alternate-screen can be pane options. | nicm | 2019-06-20 |
| | |||
* | Add a per-pane option set. Pane options inherit from window options (so | nicm | 2019-06-20 |
| | | | | | | | | | | | | there should be no change to existing behaviour) and are set and shown with set-option -p and show-options -p. Change remain-on-exit and window-style/window-active-style to be pane options (some others will be changed later). This makes select-pane -P and -g unnecessary so no longer document them (they still work) and no longer document set-window-option and show-window-options in favour of set-option -w and show-options -w. | ||
* | Remove a leftover abort and some fixes from cppcheck. | nicm | 2019-05-30 |
| | |||
* | Fix the color space parameter in RGB SGR, from Brad Town. | nicm | 2019-05-20 |
| | |||
* | Add support for overline (SGR 53), from Ricardo Banffy. | nicm | 2019-05-13 |
| | |||
* | Do not use evbuffer_add_buffer because it is destructive and doesn't | nicm | 2019-05-07 |
| | | | | work in newer libevent. | ||
* | Allow panes to be empty (no command), output can be piped to them with | nicm | 2019-05-03 |
| | | | | split-window or display-message -I. | ||
* | Add an argument to copy commands to set the prefix for the buffer name, | nicm | 2019-04-02 |
| | | | | allows buffers for different sessions to be named separately. | ||
* | Add a wrapper (struct style) around styles rather than using the | nicm | 2019-03-14 |
| | | | | grid_cell directly. There will be some non-cell members soon. | ||
* | Add actual HPA (\033[`), the existing one is CHA. From Marc Reisner. | nicm | 2019-03-14 |
| | |||
* | Do not use origin for VPA. | nicm | 2019-03-13 |
| | |||
* | DECRC and DECSC apparently need to preserve origin mode as well, based | nicm | 2019-03-12 |
| | | | | on a fix from Marc Reisner. | ||
* | Fix HPA in origin mode. | nicm | 2019-03-12 |
| | |||
* | Tidy up a lot of &ictx->ctx by using a local variable. | nicm | 2019-03-12 |
| | |||
* | Revert to not clearing history on RIS, apparently some bootloaders send | nicm | 2019-03-12 |
| | | | | this and it doesn't really do any harm. | ||
* | Allow multiple modes to be open in a pane. A stack of open modes is kept | nicm | 2019-03-12 |
| | | | | | | and the previous restored when the top is exited. If a mode that is already on the stack is entered, the existing instance is moved to the top as the active mode rather than being opened new. | ||
* | Add support for origin mode (DECOM, SM/RM ?6), from Marc Reisner. | nicm | 2019-03-12 |
| | |||
* | Fix parsing of empty colon-separated fields, reported by Siarhei Siniak. | nicm | 2018-12-17 |
| | |||
* | evbuffer_new and bufferevent_new can both fail (when malloc fails) and | nicm | 2018-11-19 |
| | | | | return NULL. GitHub issue 1547. | ||
* | Support OSC 52 ? to read the top buffer inside tmux (when set-clipboard | nicm | 2018-10-18 |
| | | | | | | is changed to on), also add refresh-client -l to ask tmux to use the same mechanism to get the clipboard from the terminal outside tmux. GitHub issue 1477. | ||
* | Support for extended underline styles on terminals which offer them, | nicm | 2018-10-18 |
| | | | | | enabled by adding the Smulx capability with terminal-overrides (add something like ',vte*:Smulx=\E[4\:%p1%dm'). GitHub issue 1492. | ||
* | Add the KEYC_XTERM flag to all function keys that imply a modifier so | nicm | 2018-08-16 |
| | | | | | that they are correctly translated into xterm(1)-style keys. GitHub issue 1437. | ||
* | Clear history on RIS like most other terminals do. | nicm | 2018-07-31 |
| | |||
* | A couple of fixes to the : form of SGR. Apparently there is an extra | nicm | 2018-04-10 |
| | | | | | argument that nobody knew about, so skip that if it exists. Also there are a bunch of useless optional arguments at the end, so ignore those. | ||
* | Fix link, from Eliran Gonen. | nicm | 2018-04-06 |
| | |||
* | For some reason tmux treats SGR 10 as SGR 0. It has done since the first | nicm | 2018-03-05 |
| | | | | | version and I'm not sure why since no other terminal appears to. Change to just ignore SGR 10 instead. | ||
* | Support ISO colon-separated SGR. | nicm | 2018-02-19 |
| | |||
* | Simplify UTF-8 states down into one state. | nicm | 2018-01-12 |
| | |||
* | Add support for the xterm(1) title stack, from Brad Town, GitHub issue | nicm | 2017-10-05 |
| | | | | 1075. | ||
* | Apply timeout to CAN and RS which also wait for ST. | nicm | 2017-09-10 |
| | |||
* | Support REP escape sequence (\033[b). | nicm | 2017-08-29 |
| | |||
* | Add a hook when the clipboard is set. | nicm | 2017-06-09 |
| | |||
* | Add a timeout to prevent the sequences which wait for a specific | nicm | 2017-06-04 |
| | | | | | | terminator (OSC, APC and DCS) waiting forever, which helps to avoid garbage (cat /dev/random) locking up panes completely. This (and the last commit) prompted by a discussion with theo. | ||
* | Be more strict about escape sequences that rename windows or set titles: | nicm | 2017-06-04 |
| | | | | | ignore any that not valid UTF-8 outright, and for good measure pass the result through our UTF-8-aware vis(3). | ||
* | Make set-clipboard a three-state option so tmux itself can ignore the | nicm | 2017-06-03 |
| | | | | sequencess. |