summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/key-string.c
AgeCommit message (Expand)Author
2024-08-23Ignore internal function keys if they have not got an entry in the keyNicholas Marriott
2024-08-22Clear overlay when command prompt is entered. Also fix some spacing inNicholas Marriott
2024-08-22Short Ctrl keys like ^A need to be converted to lowercase so they end upNicholas Marriott
2024-08-21Revamp extended keys support to more closely match xterm and supportNicholas Marriott
2023-01-16Mark keys sent by command and skip paste handling for them.Nicholas Marriott
2022-11-01Add modified Tab key sequences, from Aaron Jensen, GitHub issue 3368.Nicholas Marriott
2022-02-16Support more mouse buttons when the terminal sends them, GitHub issueNicholas Marriott
2021-06-16Pass Ctrl keys through as is when given as hex, GitHub issue 2724.Nicholas Marriott
2021-06-10Move "special" keys into the Unicode PUA rather than making them top bitNicholas Marriott
2021-06-10Add another couple of keys needed for extended keys, GitHub issue 2658.Nicholas Marriott
2021-04-07Restore previous behaviour so that C-X remains the same as C-x. Instead,Nicholas Marriott
2021-04-07Fixes for extended keys: 1) allow C-x and C-X to be bound separatelyNicholas Marriott
2020-07-06Always send xterm-style keys for M-Left and M-Right. GitHub issue 2296.Nicholas Marriott
2020-06-27Fix 0x Unicode character parsing, GitHub issue 2286.Nicholas Marriott
2020-05-25Use the internal representation for UTF-8 keys instead of wchar_t andNicholas Marriott
2020-05-20Fix a couple more places where the key flags need to be masked off.Nicholas Marriott
2020-05-20Key strings need to include the cursor and keypad flags now since theNicholas Marriott
2020-05-16Separate key flags and modifiers, log key flags, make the "xterm" flagNicholas Marriott
2020-05-16Rename KEYC_ESCAPE to KEYC_META.Nicholas Marriott
2020-04-09Some unnecessary assignments and unused variables.Nicholas Marriott
2020-03-31Add a "second click" key type which is fired for the second click of aNicholas Marriott
2020-03-15Fix C-Space key string.Nicholas Marriott
2020-02-19A few fixes to make modifier keys and dragging work - need to remove theNicholas Marriott
2019-11-14Add an option to set the key sent by backspace for those whose systemNicholas Marriott
2019-07-09Add a -H flag to send-keys to send literal keys given as hex numbersNicholas Marriott
2018-10-18Support for windows larger than visible on the attached client. This hasNicholas Marriott
2018-08-22Add StatusLeft and StatusRight mouse key modifiers for the left andNicholas Marriott
2018-07-16Add an "Any" key to run a command if a key is pressed that is not boundNicholas Marriott
2017-06-23Add user-keys option to allow user-defined keys to be set, from DanNicholas Marriott
2017-06-12Add explicit keys for the bracketed paste sequences, both to avoid mixNicholas Marriott
2017-02-22Minor bits: fix an array size, add comment, make grid_cell_entry static.Nicholas Marriott
2017-02-01Implement "all event" (1003) mouse mode but in a way that works. TheNicholas Marriott
2017-01-11Add some missing special keys to key_string_lookup_key, fix a mouseNicholas Marriott
2017-01-05Highlight all occurrences of search string after searching in copy mode.Nicholas Marriott
2016-11-23Error on invalid modifier keys.Nicholas Marriott
2016-10-11Support double and triple clicks (they are cumulative, so double isNicholas Marriott
2016-10-10Loads more static, except for cmd-*.c and window-*.c.Nicholas Marriott
2016-05-26Extend 0x1234 keys form to more bits so that Unicode keys work.Nicholas Marriott
2016-04-25Don't overwrite modifiers in the buffer when making UTF-8 strings,Nicholas Marriott
2016-03-18Instead of reusing MouseUp at the finish of a drag, add a new keyNicholas Marriott
2016-03-02Handle wcwidth() and mbtowc() failures in better style and dropNicholas Marriott
2016-01-19I no longer use my SourceForge address so replace it.Nicholas Marriott
2015-12-12Allow prefix and prefix2 to be set to None to disable (useful if youNicholas Marriott
2015-11-14All these return values from utf8_* are confusing, use an enum.Nicholas Marriott
2015-11-14Couple of assignments to remove compiler warnings.Nicholas Marriott
2015-11-14Be more strict about invalid UTF-8.Nicholas Marriott
2015-11-12Rename overly-long utf8data to ud throughout.Nicholas Marriott
2015-11-12Support UTF-8 key bindings by expanding the key type from int toNicholas Marriott
2015-10-26Handle unknown keys more gracefully, return a string instead of NULL.Nicholas Marriott
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingNicholas Marriott