summaryrefslogtreecommitdiffstats
path: root/key-string.c
AgeCommit message (Expand)Author
2020-07-06Always send xterm-style keys for M-Left and M-Right. GitHub issue 2296.nicm
2020-06-27Fix 0x Unicode character parsing, GitHub issue 2286.nicm
2020-05-25Use the internal representation for UTF-8 keys instead of wchar_t andnicm
2020-05-20Fix a couple more places where the key flags need to be masked off.nicm
2020-05-20Key strings need to include the cursor and keypad flags now since thenicm
2020-05-16Separate key flags and modifiers, log key flags, make the "xterm" flagnicm
2020-04-09Some unnecessary assignments and unused variables.nicm
2020-03-31Add a "second click" key type which is fired for the second click of anicm
2020-03-15Fix C-Space key string.nicm
2020-02-19A few fixes to make modifier keys and dragging work - need to remove thenicm
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
2018-08-22Add StatusLeft and StatusRight mouse key modifiers for the left andnicm
2018-07-16Add an "Any" key to run a command if a key is pressed that is not boundnicm
2017-06-23Add user-keys option to allow user-defined keys to be set, from Dannicm
2017-06-12Add explicit keys for the bracketed paste sequences, both to avoid mixnicm
2017-02-22Minor bits: fix an array size, add comment, make grid_cell_entry static.nicm
2017-02-01Implement "all event" (1003) mouse mode but in a way that works. Thenicm
2017-01-11Add some missing special keys to key_string_lookup_key, fix a mousenicm
2017-01-05Highlight all occurrences of search string after searching in copy mode.nicm
2016-11-23Error on invalid modifier keys.nicm
2016-10-11Support double and triple clicks (they are cumulative, so double isnicm
2016-10-10Loads more static, except for cmd-*.c and window-*.c.nicm
2016-05-26Extend 0x1234 keys form to more bits so that Unicode keys work.nicm
2016-04-25Don't overwrite modifiers in the buffer when making UTF-8 strings,nicm
2016-03-18Instead of reusing MouseUp at the finish of a drag, add a new keynicm
2016-03-02Handle wcwidth() and mbtowc() failures in better style and dropnicm
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-14All these return values from utf8_* are confusing, use an enum.nicm
2015-11-14Couple of assignments to remove compiler warnings.nicm
2015-11-14Be more strict about invalid UTF-8.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-26Handle unknown keys more gracefully, return a string instead of NULL.nicm
2015-04-19Rewrite of tmux mouse support which was a mess. Instead of havingnicm
2014-07-21Drop explicit support for F13-F20 and change to match the xterm terminfonicm
2013-03-22In terminals with XT, turn on modifyOtherKeys=1 with the escape sequenceNicholas Marriott
2012-03-04Accept hex values as keys, needed for send-keys, based on a diff fromNicholas Marriott
2012-01-21Drop the ability to have a list of keys in the prefix in favour of twoNicholas Marriott
2011-10-23Alias NPage/PPage as PageDown/PgDn/PageUp/PgUp to reduce occasionalNicholas Marriott
2011-01-23Allow top-bit-set characters to be used for key bindings, from TiagoNicholas Marriott
2011-01-01Last few tables that should be const.Nicholas Marriott
2010-06-06Use a macro-based mask for obtaining a key or modifier-set from theNicholas Marriott
2010-06-05Fix binding of C-Space/C-@, from Micah Cowan.Nicholas Marriott
2010-05-03Make C-] and other punctuation-based control key combinations work again.Ryan McBride
2010-04-23When converting A-Z into a control character, want to subtract 64 notNicholas Marriott
2010-04-21Rewrite key string conversions to be readable and to work properly forNicholas Marriott
2010-01-14Permit S- prefix on keys for shift. Relatively few terminals support thisNicholas Marriott