1. a6129e9 If we can identify the terminal as iTerm2 or as tmux, we can be sure by nicm · 4 years, 9 months ago
  2. 90e962f Add support for the iTerm2 DSR 1337 sequence to get the terminal version. by nicm · 4 years, 9 months ago
  3. 835a6c0 Be more specific in the DSR we are looking for so it doesn't get by nicm · 4 years, 9 months ago
  4. 381333c Detect iTerm2 and enable DECSLRM. by nicm · 4 years, 9 months ago
  5. 193e637 The terminal type was never as much use as I expected so remove it in by nicm · 4 years, 9 months ago
  6. deb734c Loop over all DA features, don't skip the first. by nicm · 4 years, 9 months ago
  7. 08e2828 Parse out DA features. by nicm · 4 years, 11 months ago
  8. 16b7719 Fix parsing of DA with only one argument in the response and add 65 for VT520. by nicm · 4 years, 11 months ago
  9. cb10bfb Save mouse buttons as well as position. by nicm · 5 years ago
  10. 85a9c2f Treat keys in identify mode (display-panes) specially and handle them by nicm · 5 years ago
  11. 84e4652 Use the right index for user-keys. by nicm · 5 years ago
  12. 33298d6 Instead of processing keys all together, put them up on the client by nicm · 5 years ago
  13. 2d65bbd options_array_item_value cannot return NULL. by nicm · 5 years ago
  14. b9022e3 Somehow missed these bits in last commit. by nicm · 5 years ago
  15. 7bcc0d1 Add an argument to copy commands to set the prefix for the buffer name, by nicm · 6 years ago
  16. ce6be7a Make array options a sparse tree instead of an array of char * and by nicm · 6 years ago
  17. fa33603 Do not look at next key byte if the length is 0, originally from Shingo by nicm · 6 years ago
  18. 65dd734 Do not check for a key again without an escape if only \033 is present. by nicm · 6 years ago
  19. a51668c Support OSC 52 ? to read the top buffer inside tmux (when set-clipboard by nicm · 6 years ago
  20. a9ffb56 Add the KEYC_XTERM flag to all function keys that imply a modifier so by nicm · 6 years ago
  21. db44151 kind should be S-Down not S-Up. by nicm · 7 years ago
  22. 9852bd7 Check for complete keys before escape prefix, allows keys to be defined by nicm · 7 years ago
  23. 25cf126 Use kind and kri for S-Up/Down as well as kUP and kDN. by nicm · 7 years ago
  24. 95ed7d4 Add user-keys option to allow user-defined keys to be set, from Dan Aloni. by nicm · 7 years ago
  25. 8037159 Add explicit keys for the bracketed paste sequences, both to avoid mix by nicm · 7 years ago
  26. d52f579 Up to now, tmux sees \033\033[OA as M-Up and since we turned on by nicm · 7 years ago
  27. f731ae4 Revert use of DECSLRM on iTerm2, it doesn't help as much as we throught, by nicm · 8 years ago
  28. 623e35f Detect iTerm2 and use DECSLRM for it as well. by nicm · 8 years ago
  29. 83ff1e9 Include client name in key logging. by nicm · 8 years ago
  30. d22c151 Don't use a bufferevent for the tty, so we can keep better track of what by nicm · 8 years ago
  31. 7497ecd Use a macro for looking up tty types. by nicm · 8 years ago
  32. 0ace779 Initial attempt to make use of left and right margins if the terminal by nicm · 8 years ago
  33. c426e48 Loads more static, except for cmd-*.c and window-*.c. by nicm · 8 years ago
  34. 97417a1 Fix keys parsing again to correctly accept Unicode when not prefixed by nicm · 8 years ago
  35. fc70ac4 Apply backspace check after working out the actual key, so that M-BSpace by nicm · 8 years ago
  36. d3546cc Simplify next key matching and fix problems with meta and Unicode keys. by nicm · 8 years ago
  37. b8a102d Handle wcwidth() and mbtowc() failures in better style and drop by nicm · 9 years ago
  38. 995af0e I no longer use my SourceForge address so replace it. by nicm · 9 years ago
  39. 39cf9c9 Allow prefix and prefix2 to be set to None to disable (useful if you by nicm · 9 years ago
  40. 32e510b Remove support for the UTF-8 mouse extension. This was a briefly used, by nicm · 9 years ago
  41. 577c0e3 Use __unused rather than rolling our own. by nicm · 9 years ago
  42. 205d15e All these return values from utf8_* are confusing, use an enum. by nicm · 9 years ago
  43. dab63b0 Couple of assignments to remove compiler warnings. by nicm · 9 years ago
  44. 64333e3 Be more strict about invalid UTF-8. by nicm · 9 years ago
  45. e71a915 Rename overly-long utf8data to ud throughout. by nicm · 9 years ago
  46. 69e0b83 Support UTF-8 key bindings by expanding the key type from int to by nicm · 9 years ago
  47. 44657bf Move struct options into options.c. by nicm · 9 years ago
  48. 8121127 We no longer need the terminal service class, so don't bother asking for it. by nicm · 9 years ago
  49. b0782df Do not use the key variable uninitialized (in a debug log statement), by nicm · 9 years ago
  50. bf635e7 Rewrite of tmux mouse support which was a mess. Instead of having by nicm · 10 years ago
  51. abfb965 Fix some spacing nits. by nicm · 10 years ago
  52. 2056a9e Drop explicit support for F13-F20 and change to match the xterm terminfo entry: by nicm · 10 years ago
  53. 61605c6 Count mouse clicks correctly, from Balazs Kezes. by nicm · 10 years ago
  54. fd9a53b Reset the buttons when the wheel is used, from Balazs Kezes. by nicm · 10 years ago
  55. a94696d Some terminals send spurious releases for mouse wheel in SGR mouse mode, by nicm · 10 years ago
  56. 94ccc6a Instead of forcing mouse scroll to 1 in choose mode, scale it down by nicm · 10 years ago
  57. acef311 Work out mouse scroll wheel effect when the mouse is first detected and by nicm · 11 years ago
  58. 8824dae A couple of trivial mouse-related style nits. by nicm · 11 years ago
  59. 46593e7 Add names for mouse button bits rather than using magic numbers, from by nicm · 11 years ago
  60. c52548f The last fix to xterm keys meant that some keys such as \033OA were by nicm · 11 years ago
  61. 784b711 Assign mouse x/y coords before checking them. When receiving mouse by nicm · 11 years ago
  62. 2756d12 Handle input mouse positions <33 (we already can generate them). by nicm · 11 years ago
  63. dfac36b Only accept partial keys if the timer has not expired, fixes infinite by Nicholas Marriott · 12 years ago
  64. e229501 Process ^[ as meta when a partial key is found. by Nicholas Marriott · 12 years ago
  65. a60687f Handle focus events from the terminal, from Aaron Jensen. by Nicholas Marriott · 12 years ago
  66. 67b4d5b Support the latest theory for mouse input, this is enabled/disabled with by Nicholas Marriott · 12 years ago
  67. d4785fe Don't set key KEYC_NONE on xterm_keys_find match() by Nicholas Marriott · 12 years ago
  68. d5139d1 Fix a comment for new key table names. by Nicholas Marriott · 12 years ago
  69. 260419f Put helper function back, will be needed in a bit. by Nicholas Marriott · 12 years ago
  70. d210d99 Make mouse event structure clearer by defining events (up, click, drag) by Nicholas Marriott · 12 years ago
  71. 473911f Can't call evtimer_pending on uninitialized events, call by Nicholas Marriott · 12 years ago
  72. d39c58c xterm won't reach version 500 for a while so set that as the upper limit. by Nicholas Marriott · 12 years ago
  73. df912e3 xfree is not particularly helpful, remove it. From Thomas Adam. by Nicholas Marriott · 12 years ago
  74. 84c708f Store client in tty struct directly instead of using a callback function by Nicholas Marriott · 12 years ago
  75. fe4f008 Store mouse data in tty structure not on the stack. by Nicholas Marriott · 12 years ago
  76. e8dff68 Handle partial keys properly by making sure the timer has actually by Nicholas Marriott · 12 years ago
  77. 7c9d003 Some terminals respond to secondary DA with primary (they ignore the by Nicholas Marriott · 13 years ago
  78. d8805af On xterm 271 and later, put the terminal into SCL 5 and use DECCRA for by Nicholas Marriott · 13 years ago
  79. d3c842d Check event_initialized before event_del if event may not have been set by Nicholas Marriott · 13 years ago
  80. c8c0d68 Send secondary DA to terminals with XT in terminfo when starting up and by Nicholas Marriott · 13 years ago
  81. d5ed5fb Two fixes by Micah Cowan: make mouse work properly beyond >127 on signed by Nicholas Marriott · 14 years ago
  82. ac3b78a Support for UTF-8 mouse input (\033[1005h). This was added in xterm 262 by Nicholas Marriott · 14 years ago
  83. 1c86713 Key table should be const. by Nicholas Marriott · 14 years ago
  84. 43fa9a9 When the mode-mouse option is on, support dragging to make a selection by Nicholas Marriott · 14 years ago
  85. 021037c Accept a full key match (not a partial) even if there is data left in by Nicholas Marriott · 15 years ago
  86. 19ea306 Allow keys to be replaced and reorder the table so that terminfo-defined keys by Nicholas Marriott · 15 years ago
  87. 30962cb New server option, escape-time, to set the timeout used to detect if escapes by Nicholas Marriott · 15 years ago
  88. 15a64b8 Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last by Nicholas Marriott · 15 years ago
  89. f27fefd Look for mice and xterm keys before standard function keys as they are less by Nicholas Marriott · 15 years ago
  90. 29a5931 Handle partial xterm function key sequences. by Nicholas Marriott · 15 years ago
  91. ba5404d Continue rather than returning if not a mouse key, to avoid hanging on any by Nicholas Marriott · 15 years ago
  92. 4ca857e Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to by Nicholas Marriott · 15 years ago
  93. 9c01479 Handle the possibility of partial mouse reads, and fix a comment while here. by Nicholas Marriott · 15 years ago
  94. d9deb4b Support rxvt-style keys again, but this time: support all the variations, put by Nicholas Marriott · 15 years ago
  95. 05831b5 Twiddling the last bit is an rxvtism, so do not support it in the table by by Nicholas Marriott · 15 years ago
  96. 591fa23 The input key should be a u_char. Fixes top-bit-set input problem reported by by Nicholas Marriott · 15 years ago
  97. daf150c Constify buf. by Nicholas Marriott · 15 years ago
  98. ff55eb5 Unused variable. Aargh. by Nicholas Marriott · 15 years ago
  99. 80e0158 Switch the tty key tree over to an (unbalanced) ternary tree which allows by Nicholas Marriott · 15 years ago
  100. a790e16 Key flags are only used for initialisation so they are not needed in the main by Nicholas Marriott · 15 years ago