| Commit message (Expand) | Author | Age | Files | Lines |
* | Reduce len when moving past spaces in OSC 11 parameter. |  nicm | 2021-02-18 | 1 | -2/+4 |
* | Make SGR 6 (rapid blink) the same as SGR 5 (blink) and make SGR 21 to |  nicm | 2021-02-15 | 1 | -1/+6 |
* | Support X11 colour names and some other variations for OSC 10/11, also |  nicm | 2021-02-15 | 1 | -54/+85 |
* | Limit range of repeat to avoid silly high numbers causing delays, from |  nicm | 2020-10-30 | 1 | -1/+5 |
* | Do not write after the end of the array and overwrite the stack when |  nicm | 2020-10-29 | 1 | -2/+7 |
* | Respond to colour requests if a colour is available, from Michal Goral. |  nicm | 2020-08-19 | 1 | -9/+37 |
* | Add a hook when the pane title changed. |  nicm | 2020-07-24 | 1 | -1/+4 |
* | d and D keys to reset to default in customize mode. |  nicm | 2020-06-16 | 1 | -5/+5 |
* | Instead of sending all data to control mode clients as fast as possible, |  nicm | 2020-06-01 | 1 | -2/+2 |
* | Support code for control mode flow control: allow clients to have |  nicm | 2020-05-21 | 1 | -5/+6 |
* | Add a terminal feature for enable/disable extended keys (supported by |  nicm | 2020-05-16 | 1 | -2/+19 |
* | Do not hoke into struct window_pane from the tty code and instead set |  nicm | 2020-05-16 | 1 | -26/+13 |
* | Drop having a separate type for style options and make them all strings, |  nicm | 2020-05-16 | 1 | -14/+17 |
* | Remove support for iTerm2's DSR 1337 extension and use the CSI > q |  nicm | 2020-05-16 | 1 | -9/+9 |
* | Do not remove the automatic-rename option from the global set, only from |  nicm | 2020-04-30 | 1 | -2/+2 |
* | Move alternate screen into the screen rather than the pane. |  nicm | 2020-03-31 | 1 | -1/+9 |
* | Detach reply escape sequences from the pane so they work in popups. |  nicm | 2020-03-31 | 1 | -15/+13 |
* | Change input path so it doesn't require a pane. |  nicm | 2020-03-19 | 1 | -76/+126 |
* | Instead of passing titles through vis() which doubles backslashes, just |  nicm | 2020-02-03 | 1 | -8/+4 |
* | Do not send DA and DSR again if already have a response. |  nicm | 2020-01-29 | 1 | -1/+2 |
* | Add support for the iTerm2 DSR 1337 sequence to get the terminal version. |  nicm | 2020-01-28 | 1 | -1/+10 |
* | Bump the escape sequence timeout to five seconds to allow for longer |  nicm | 2019-11-28 | 1 | -2/+2 |
* | Do not add path if it is NULL, duh. |  nicm | 2019-11-15 | 1 | -2/+1 |
* | Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path). |  nicm | 2019-11-15 | 1 | -1/+8 |
* | Change new-session -A without a session name (that is, no -s option |  nicm | 2019-11-14 | 1 | -2/+2 |
* | Handle the various different forms of rgb colour strings. |  nicm | 2019-11-01 | 1 | -5/+59 |
* | Turn automatic-rename back on if the rename escape sequence is used with |  nicm | 2019-10-14 | 1 | -1/+11 |
* | Style and line length nits. |  nicm | 2019-09-25 | 1 | -2/+3 |
* | Some minor performance improvements - most notably, don't search the |  nicm | 2019-09-24 | 1 | -11/+18 |
* | Add support for the SD (scroll down) escape sequence, GitHub issue 1861. |  nicm | 2019-08-05 | 1 | -1/+8 |
* | Add support for underscore colours with Setulc capability, mostly from |  nicm | 2019-06-27 | 1 | -3/+10 |
* | allow-rename and alternate-screen can be pane options. |  nicm | 2019-06-20 | 1 | -2/+2 |
* | Add a per-pane option set. Pane options inherit from window options (so |  nicm | 2019-06-20 | 1 | -7/+11 |
* | Remove a leftover abort and some fixes from cppcheck. |  nicm | 2019-05-30 | 1 | -2/+1 |
* | Fix the color space parameter in RGB SGR, from Brad Town. |  nicm | 2019-05-20 | 1 | -12/+14 |
* | Add support for overline (SGR 53), from Ricardo Banffy. |  nicm | 2019-05-13 | 1 | -1/+7 |
* | Do not use evbuffer_add_buffer because it is destructive and doesn't |  nicm | 2019-05-07 | 1 | -13/+14 |
* | Allow panes to be empty (no command), output can be piped to them with |  nicm | 2019-05-03 | 1 | -1/+3 |
* | Add an argument to copy commands to set the prefix for the buffer name, |  nicm | 2019-04-02 | 1 | -2/+2 |
* | Add a wrapper (struct style) around styles rather than using the |  nicm | 2019-03-14 | 1 | -3/+3 |
* | Add actual HPA (\033[`), the existing one is CHA. From Marc Reisner. |  nicm | 2019-03-14 | 1 | -3/+4 |
* | Do not use origin for VPA. |  nicm | 2019-03-13 | 1 | -3/+3 |
* | DECRC and DECSC apparently need to preserve origin mode as well, based |  nicm | 2019-03-12 | 1 | -18/+39 |
* | Fix HPA in origin mode. |  nicm | 2019-03-12 | 1 | -3/+3 |
* | Tidy up a lot of &ictx->ctx by using a local variable. |  nicm | 2019-03-12 | 1 | -71/+80 |
* | Revert to not clearing history on RIS, apparently some bootloaders send |  nicm | 2019-03-12 | 1 | -2/+1 |
* | Allow multiple modes to be open in a pane. A stack of open modes is kept |  nicm | 2019-03-12 | 1 | -3/+3 |
* | Add support for origin mode (DECOM, SM/RM ?6), from Marc Reisner. |  nicm | 2019-03-12 | 1 | -1/+9 |
* | Fix parsing of empty colon-separated fields, reported by Siarhei Siniak. |  nicm | 2018-12-17 | 1 | -2/+3 |
* | evbuffer_new and bufferevent_new can both fail (when malloc fails) and |  nicm | 2018-11-19 | 1 | -1/+3 |