Commit 81d7087514eb067959560c672786c81fc9af39d6

Authored by balrog
1 parent 853f6931

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
Showing 1 changed file with 1 additions and 1 deletions
curses_keys.h
@@ -192,7 +192,7 @@ static const int curses2keycode[CURSES_KEYS] = { @@ -192,7 +192,7 @@ static const int curses2keycode[CURSES_KEYS] = {
192 [0x014] = 20 | CNTRL, /* Control + t */ 192 [0x014] = 20 | CNTRL, /* Control + t */
193 [0x019] = 21 | CNTRL, /* Control + y */ 193 [0x019] = 21 | CNTRL, /* Control + y */
194 [0x015] = 22 | CNTRL, /* Control + u */ 194 [0x015] = 22 | CNTRL, /* Control + u */
195 - [0x009] = 23 | CNTRL, /* Control + i */ 195 + /* Control + i collides with Tab */
196 [0x00f] = 24 | CNTRL, /* Control + o */ 196 [0x00f] = 24 | CNTRL, /* Control + o */
197 [0x010] = 25 | CNTRL, /* Control + p */ 197 [0x010] = 25 | CNTRL, /* Control + p */
198 198