aboutsummaryrefslogtreecommitdiff
path: root/curses_keys.h
diff options
context:
space:
mode:
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-28 00:11:06 +0000
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>2008-10-28 00:11:06 +0000
commit81d7087514eb067959560c672786c81fc9af39d6 (patch)
treef47ee525215f2d33ac45298ed5d4f0e4453f404a /curses_keys.h
parent853f6931db87fd4f2f5754d28630a62404338645 (diff)
Control + i and [tab] share keycode in curses, simulate [tab].
Spotted by Blue Swirl. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5559 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'curses_keys.h')
-rw-r--r--curses_keys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/curses_keys.h b/curses_keys.h
index 9cdaf69358..0105279087 100644
--- a/curses_keys.h
+++ b/curses_keys.h
@@ -192,7 +192,7 @@ static const int curses2keycode[CURSES_KEYS] = {
[0x014] = 20 | CNTRL, /* Control + t */
[0x019] = 21 | CNTRL, /* Control + y */
[0x015] = 22 | CNTRL, /* Control + u */
- [0x009] = 23 | CNTRL, /* Control + i */
+ /* Control + i collides with Tab */
[0x00f] = 24 | CNTRL, /* Control + o */
[0x010] = 25 | CNTRL, /* Control + p */