jcjordyn140 / mintty

Automatically exported from code.google.com/p/mintty
GNU General Public License v3.0
0 stars 0 forks source link

Keycode improvements #64

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Some minor keyboard handling improvements:
- Ctrl-Backspace and Alt-Backspace now send ^? and ^[^H when the backspace
keycode is set to the default ^H. This is for compatibility with xterm.
- Control characters on symbol keys now depend on scancode instead of
VK_OEM codes, because the latter move about rather randomly between
different countries' keyboards.
- Shift-Esc sends ^] no matter the plain Esc keycode.
- Ctrl-number combinations with Shift or Alt now send ^[[x instead of ^[OX
  because the keycodes Shift/Alt+Ctrl+0..3 clashed with F1..F4.
- Added keycodes for browser forward and back keys: ^[[F and ^[[G. Someone
might use them for Lynx. :)

Original issue reported on code.google.com by andy.koppe on 12 Mar 2009 at 7:55