summaryrefslogtreecommitdiffstats
path: root/input.c
AgeCommit message (Expand)Author
2017-05-12ECH needs to use background colour.Nicholas Marriott
2017-04-22We need to collect UTF-8 characters so that width != 1 characters arenicm
2017-03-22Add support for the strikethrough attribute (SGR 9), using the new smxxnicm
2017-02-19Add SGR 28 to clear hidden flag.nicm
2017-02-16There are buggy terminals out there that do not move the cursor to 0,0nicm
2017-02-08Add support for scroll up escape sequence (CSI S) and use it whennicm
2017-02-08Collect sequences of printable ASCII characters and process themnicm
2017-02-08Some other tidying bits.nicm
2017-02-06Use DECFRA on VT420 compatible terminals (so, xterm) and ED on allnicm
2017-02-06Add BCE for clear to start of screen, which was somehow missed.nicm
2017-02-06Fix logging of CSI parameters.nicm
2017-02-01Implement "all event" (1003) mouse mode but in a way that works. Thenicm
2017-01-22Accept the OSC 52 escape sequence inside tmux to add a new buffer, fromnicm
2017-01-07Add support for the OSC 4 and OSC 104 palette setting escape sequences,nicm
2016-12-09Spacing nits.nicm
2016-10-13Add support for BCE (background colour erase). This makes various escapenicm
2016-10-03Remove some dead code in cmd-move-window.c and make a load of localnicm
2016-09-28Couple of vasprintf -> xvasprintf.nicm
2016-07-15Instead of representing colours in several different forms with variousnicm
2016-03-02Handle wcwidth() and mbtowc() failures in better style and dropnicm
2016-01-29Support for RGB colour, using the extended cell mechanism to avoidnicm
2016-01-19I no longer use my SourceForge address so replace it.nicm
2016-01-15A couple of missing printflike attributes, from Andrey Starodubtsev.nicm
2015-12-16send-keys -R should reset the input parser to ground state (so it can benicm
2015-11-23Partly revert previous, it is harmless to keep support for UTF-8 mousenicm
2015-11-23Remove support for the UTF-8 mouse extension. This was a briefly used,nicm
2015-11-18Sync the entire xmalloc.[ch] with the other users, but with the additionnicm
2015-11-14The character is an int so use %x not %hhx.nicm
2015-11-14All these return values from utf8_* are confusing, use an enum.nicm
2015-11-14Be more strict about invalid UTF-8.nicm
2015-11-14Log more of UTF-8 input.nicm
2015-11-13Long overdue change to the way we store cells in the grid: now, insteadnicm
2015-11-12Nuke the utf8 and status-utf8 options and make tmux only a UTF-8nicm
2015-10-27Move struct options into options.c.nicm
2015-09-02Log pane which received input data.nicm
2015-09-01Tweak some error messages/comments.nicm
2015-09-01Log the whole new input buffer once rather than each byte.nicm
2015-08-29Move alerts onto events rather than checking every loop.nicm
2015-08-28Only do the automatic-rename dance if the pane has changed (seen output,nicm
2015-08-25When searching for tabs, start from screen width, fixes out-of-boundsnicm
2015-07-13Reset G0/G1 state when resetting everything else with send-keys -R.nicm
2015-06-15Add window_activity format, from Thomas Adam based on a diff originallynicm
2015-06-05Handle the RGB colour escape sequence (\033[38;2;<r>;<g>;<b>m and 48;2)nicm
2015-06-04teminal -> terminal, from Corey Farwell.nicm
2015-06-01Missing t at end of response, from Vincent Bernat.nicm
2015-05-11Remove the c0-* options which never really worked satisfactorily. Goingnicm
2015-05-08Move input parser structs into input.c (removing fairly uselessnicm
2015-03-31Fix some format specifier nits, from Ben Boeckel.nicm
2015-01-20Support blinking cursor mode, both the xterm CSI ?12 h/l and (thenicm
2014-10-08Add xreallocarray and remove nmemb argument from xrealloc.nicm