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