Lines Matching full:control

49 /* curses won't detect a Control + Alt + 1, so use Alt + 1 */
184 ['Q' - '@'] = 16 | CNTRL, /* Control + q */
185 ['W' - '@'] = 17 | CNTRL, /* Control + w */
186 ['E' - '@'] = 18 | CNTRL, /* Control + e */
187 ['R' - '@'] = 19 | CNTRL, /* Control + r */
188 ['T' - '@'] = 20 | CNTRL, /* Control + t */
189 ['Y' - '@'] = 21 | CNTRL, /* Control + y */
190 ['U' - '@'] = 22 | CNTRL, /* Control + u */
191 /* Control + i collides with Tab */
192 ['O' - '@'] = 24 | CNTRL, /* Control + o */
193 ['P' - '@'] = 25 | CNTRL, /* Control + p */
195 ['A' - '@'] = 30 | CNTRL, /* Control + a */
196 ['S' - '@'] = 31 | CNTRL, /* Control + s */
197 ['D' - '@'] = 32 | CNTRL, /* Control + d */
198 ['F' - '@'] = 33 | CNTRL, /* Control + f */
199 ['G' - '@'] = 34 | CNTRL, /* Control + g */
200 ['H' - '@'] = 35 | CNTRL, /* Control + h */
201 /* Control + j collides with Return */
202 ['K' - '@'] = 37 | CNTRL, /* Control + k */
203 ['L' - '@'] = 38 | CNTRL, /* Control + l */
205 ['Z' - '@'] = 44 | CNTRL, /* Control + z */
206 ['X' - '@'] = 45 | CNTRL, /* Control + x */
207 ['C' - '@'] = 46 | CNTRL, /* Control + c */
208 ['V' - '@'] = 47 | CNTRL, /* Control + v */
209 ['B' - '@'] = 48 | CNTRL, /* Control + b */
210 ['N' - '@'] = 49 | CNTRL, /* Control + n */
211 /* Control + m collides with the keycode for Enter */
213 ['@' - '@'] = 3 | CNTRL, /* Control + @ */
214 /* Control + [ collides with the keycode for Escape */
215 ['\\' - '@'] = 43 | CNTRL, /* Control + Backslash */
216 [']' - '@'] = 27 | CNTRL, /* Control + ] */
217 ['^' - '@'] = 7 | CNTRL, /* Control + ^ */
218 ['_' - '@'] = 12 | CNTRL, /* Control + Underscore */