summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/input.c
AgeCommit message (Expand)Author
2021-11-03Add a cursor-style option, from Alexis Hildebrandt in GitHub issue 2960.Nicholas Marriott
2021-11-01Add a cursor-colour option, from Alexis Hildebrandt in GitHub issueNicholas Marriott
2021-10-05Separate "very visible" flag from blinking flag, it should not affectNicholas Marriott
2021-08-14Some other missing palette NULL checks, from oss-fuzz.Nicholas Marriott
2021-08-13Change focus to be driven by events rather than walking all panes at endNicholas Marriott
2021-08-11Break the colour palette into a struct rather than just a single arrayNicholas Marriott
2021-06-10Add an "always" value to the extended-keys option to always forwardNicholas Marriott
2021-02-18Reduce len when moving past spaces in OSC 11 parameter.Nicholas Marriott
2021-02-15Make SGR 6 (rapid blink) the same as SGR 5 (blink) and make SGR 21 toNicholas Marriott
2021-02-15Support X11 colour names and some other variations for OSC 10/11, alsoNicholas Marriott
2020-10-30Limit range of repeat to avoid silly high numbers causing delays, fromNicholas Marriott
2020-10-29Do not write after the end of the array and overwrite the stack whenNicholas Marriott
2020-08-19Respond to colour requests if a colour is available, from Michal Goral.Nicholas Marriott
2020-07-24Add a hook when the pane title changed.Nicholas Marriott
2020-06-16d and D keys to reset to default in customize mode.Nicholas Marriott
2020-06-01Instead of sending all data to control mode clients as fast as possible,Nicholas Marriott
2020-05-21Support code for control mode flow control: allow clients to haveNicholas Marriott
2020-05-16Add a terminal feature for enable/disable extended keys (supported byNicholas Marriott
2020-05-16Do not hoke into struct window_pane from the tty code and instead setNicholas Marriott
2020-05-16Drop having a separate type for style options and make them all strings,Nicholas Marriott
2020-05-16Remove support for iTerm2's DSR 1337 extension and use the CSI > qNicholas Marriott
2020-04-30Do not remove the automatic-rename option from the global set, only fromNicholas Marriott
2020-03-31Move alternate screen into the screen rather than the pane.Nicholas Marriott
2020-03-31Detach reply escape sequences from the pane so they work in popups.Nicholas Marriott
2020-03-19Change input path so it doesn't require a pane.Nicholas Marriott
2020-02-03Instead of passing titles through vis() which doubles backslashes, justNicholas Marriott
2020-01-29Do not send DA and DSR again if already have a response.Nicholas Marriott
2020-01-28Add support for the iTerm2 DSR 1337 sequence to get the terminal version.Nicholas Marriott
2019-11-28Bump the escape sequence timeout to five seconds to allow for longerNicholas Marriott
2019-11-15Do not add path if it is NULL, duh.Nicholas Marriott
2019-11-15Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).Nicholas Marriott
2019-11-14Change new-session -A without a session name (that is, no -s optionNicholas Marriott
2019-11-01Handle the various different forms of rgb colour strings.Nicholas Marriott
2019-10-14Turn automatic-rename back on if the rename escape sequence is used withNicholas Marriott
2019-09-25Style and line length nits.Nicholas Marriott
2019-09-24Some minor performance improvements - most notably, don't search theNicholas Marriott
2019-08-05Add support for the SD (scroll down) escape sequence, GitHub issue 1861.Nicholas Marriott
2019-06-27Add support for underscore colours with Setulc capability, mostly fromNicholas Marriott
2019-06-20allow-rename and alternate-screen can be pane options.Nicholas Marriott
2019-06-20Add a per-pane option set. Pane options inherit from window options (soNicholas Marriott
2019-05-30Remove a leftover abort and some fixes from cppcheck.Nicholas Marriott
2019-05-20Fix the color space parameter in RGB SGR, from Brad Town.Nicholas Marriott
2019-05-13Add support for overline (SGR 53), from Ricardo Banffy.Nicholas Marriott
2019-05-07Do not use evbuffer_add_buffer because it is destructive and doesn'tNicholas Marriott
2019-05-03Allow panes to be empty (no command), output can be piped to them withNicholas Marriott
2019-04-02Add an argument to copy commands to set the prefix for the buffer name,Nicholas Marriott
2019-03-14Add a wrapper (struct style) around styles rather than using theNicholas Marriott
2019-03-14Add actual HPA (\033[`), the existing one is CHA. From Marc Reisner.Nicholas Marriott
2019-03-13Do not use origin for VPA.Nicholas Marriott
2019-03-12DECRC and DECSC apparently need to preserve origin mode as well, basedNicholas Marriott