summaryrefslogtreecommitdiffstats
path: root/input.c
AgeCommit message (Expand)Author
2020-10-30Limit range of repeat to avoid silly high numbers causing delays, fromnicm
2020-10-29Do not write after the end of the array and overwrite the stack whennicm
2020-08-19Respond to colour requests if a colour is available, from Michal Goral.nicm
2020-07-24Add a hook when the pane title changed.nicm
2020-06-16d and D keys to reset to default in customize mode.nicm
2020-06-01Instead of sending all data to control mode clients as fast as possible,nicm
2020-05-21Support code for control mode flow control: allow clients to havenicm
2020-05-16Add a terminal feature for enable/disable extended keys (supported bynicm
2020-05-16Do not hoke into struct window_pane from the tty code and instead setnicm
2020-05-16Drop having a separate type for style options and make them all strings,nicm
2020-05-16Remove support for iTerm2's DSR 1337 extension and use the CSI > qnicm
2020-04-30Do not remove the automatic-rename option from the global set, only fromnicm
2020-03-31Move alternate screen into the screen rather than the pane.nicm
2020-03-19Change input path so it doesn't require a pane.nicm
2020-02-03Instead of passing titles through vis() which doubles backslashes, justnicm
2020-01-29Do not send DA and DSR again if already have a response.nicm
2020-01-28Add support for the iTerm2 DSR 1337 sequence to get the terminal version.nicm
2019-11-28Bump the escape sequence timeout to five seconds to allow for longernicm
2019-11-15Do not add path if it is NULL, duh.nicm
2019-11-15Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).nicm
2019-11-14Change new-session -A without a session name (that is, no -s optionnicm
2019-11-01Handle the various different forms of rgb colour strings.nicm
2019-10-14Turn automatic-rename back on if the rename escape sequence is used withnicm
2019-09-25Style and line length nits.nicm
2019-09-24Some minor performance improvements - most notably, don't search thenicm
2019-08-05Add support for the SD (scroll down) escape sequence, GitHub issue 1861.nicm
2019-06-27Add support for underscore colours with Setulc capability, mostly fromnicm
2019-06-20allow-rename and alternate-screen can be pane options.nicm
2019-06-20Add a per-pane option set. Pane options inherit from window options (sonicm
2019-05-30Remove a leftover abort and some fixes from cppcheck.nicm
2019-05-20Fix the color space parameter in RGB SGR, from Brad Town.nicm
2019-05-13Add support for overline (SGR 53), from Ricardo Banffy.nicm
2019-05-07Do not use evbuffer_add_buffer because it is destructive and doesn'tnicm
2019-05-03Allow panes to be empty (no command), output can be piped to them withnicm
2019-04-02Add an argument to copy commands to set the prefix for the buffer name,nicm
2019-03-14Add a wrapper (struct style) around styles rather than using thenicm
2019-03-14Add actual HPA (\033[`), the existing one is CHA. From Marc Reisner.nicm
2019-03-13Do not use origin for VPA.nicm
2019-03-12DECRC and DECSC apparently need to preserve origin mode as well, basednicm
2019-03-12Fix HPA in origin mode.nicm
2019-03-12Tidy up a lot of &ictx->ctx by using a local variable.nicm
2019-03-12Revert to not clearing history on RIS, apparently some bootloaders sendnicm
2019-03-12Allow multiple modes to be open in a pane. A stack of open modes is keptnicm
2019-03-12Add support for origin mode (DECOM, SM/RM ?6), from Marc Reisner.nicm
2018-12-17Fix parsing of empty colon-separated fields, reported by Siarhei Siniak.nicm
2018-11-19evbuffer_new and bufferevent_new can both fail (when malloc fails) andnicm
2018-10-18Support OSC 52 ? to read the top buffer inside tmux (when set-clipboardnicm
2018-10-18Support for extended underline styles on terminals which offer them,nicm
2018-08-16Add the KEYC_XTERM flag to all function keys that imply a modifier sonicm
2018-07-31Clear history on RIS like most other terminals do.nicm