summaryrefslogtreecommitdiffstats
path: root/input-keys.c
AgeCommit message (Expand)Author
2023-01-12Have tmux recognise pasted texts wrapped in bracket paste sequences,nicm
2022-11-08Fix C-S-Tab without extended keys, from Aaron Jensen.nicm
2022-11-02Instead of always setting the extended flag, set it only when searching.nicm
2022-11-01Add modified Tab key sequences, from Aaron Jensen, GitHub issue 3368.nicm
2022-05-30If a mouse position was above the maximum supported by the normal mousenicm
2022-03-01Don't convert codes for special keys (Tab, Enter, Escape).nicm
2022-02-28Map control keys back to an ASCII uppercase letter when passing them onnicm
2022-02-16Support more mouse buttons when the terminal sends them, GitHub issuenicm
2021-08-20Remove stray spaces after function names.nicm
2021-06-10Remove old shift function keys which interfere with xterm keys now.nicm
2021-06-10Move "special" keys into the Unicode PUA rather than making them top bitnicm
2021-04-09Change a type to fix a warning with some compilers.nicm
2021-04-08Log the key written to the terminal as well as tmux's idea of what itnicm
2020-11-17Log missing keys when extended keys is on rather than fatal().nicm
2020-09-18Some other warnings, GitHub issue 2382.nicm
2020-06-01Try without cursor/keypad flags if a key doesn't exist, and limit ctrlnicm
2020-05-25Use the internal representation for UTF-8 keys instead of wchar_t andnicm
2020-05-19Some other ctrl keys need to be translated with extended keys on.nicm
2020-05-16Add a terminal feature for enable/disable extended keys (supported bynicm
2020-04-07Do not send mouse events if the program has not requested them.nicm
2020-04-01Support mouse in popups.nicm
2020-03-19Change input path so it doesn't require a pane.nicm
2020-03-16Send mouse down event immediately rather than waiting for double clicknicm
2020-01-13Treat plausible but invalid keys (like C-BSpace) as literal like anynicm
2019-11-18Keep modifiers on backspace when translating it.nicm
2019-11-14Add an option to set the key sent by backspace for those whose systemnicm
2019-07-09Add a -H flag to send-keys to send literal keys given as hex numbersnicm
2018-10-18Support for windows larger than visible on the attached client. This hasnicm
2017-06-28Apply the xterm key flag when needed for send-keys, fixes problemnicm
2017-06-12Add explicit keys for the bracketed paste sequences, both to avoid mixnicm
2017-05-07Up to now, tmux sees \033\033[OA as M-Up and since we turned onnicm
2017-02-01Implement "all event" (1003) mouse mode but in a way that works. Thenicm
2017-01-25Revert previous for now, it will break TERM=screen.nicm
2017-01-25If xterm-keys is on, use xterm(1) style keys for Home and End as well asnicm
2016-10-03Remove some dead code in cmd-move-window.c and make a load of localnicm
2016-03-02Limit x, y and b to 0x7ff for UTF-8 mouse input, suggested by schwarze@.nicm
2016-03-01Use system wcwidth() instead of carrying around UTF-8 width tables.nicm
2016-01-19I no longer use my SourceForge address so replace it.nicm
2015-12-12Allow prefix and prefix2 to be set to None to disable (useful if younicm
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-160x7f is a valid key.nicm
2015-11-14All these return values from utf8_* are confusing, use an enum.nicm
2015-11-12Rename overly-long utf8data to ud throughout.nicm
2015-11-12Support UTF-8 key bindings by expanding the key type from int tonicm
2015-10-27Move struct options into options.c.nicm
2015-10-26Some extra logging of where keys are actually going.nicm
2015-04-21Don't eat the mouse event that triggers a drag end because we may wantnicm
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingnicm
2015-03-31Fix some format specifier nits, from Ben Boeckel.nicm