Lines Matching refs:Escape

52     "\x1b": Keys.Escape,  # Also Control-[
172 "\x1b[2;3~": (Keys.Escape, Keys.Insert),
173 "\x1b[3;3~": (Keys.Escape, Keys.Delete),
174 "\x1b[5;3~": (Keys.Escape, Keys.PageUp),
175 "\x1b[6;3~": (Keys.Escape, Keys.PageDown),
176 "\x1b[2;4~": (Keys.Escape, Keys.ShiftInsert),
177 "\x1b[3;4~": (Keys.Escape, Keys.ShiftDelete),
178 "\x1b[5;4~": (Keys.Escape, Keys.ShiftPageUp),
179 "\x1b[6;4~": (Keys.Escape, Keys.ShiftPageDown),
186 "\x1b[2;7~": (Keys.Escape, Keys.ControlInsert),
187 "\x1b[5;7~": (Keys.Escape, Keys.ControlPageDown),
188 "\x1b[6;7~": (Keys.Escape, Keys.ControlPageDown),
189 "\x1b[2;8~": (Keys.Escape, Keys.ControlShiftInsert),
190 "\x1b[5;8~": (Keys.Escape, Keys.ControlShiftPageDown),
191 "\x1b[6;8~": (Keys.Escape, Keys.ControlShiftPageDown),
227 "\x1b[1;3A": (Keys.Escape, Keys.Up),
228 "\x1b[1;3B": (Keys.Escape, Keys.Down),
229 "\x1b[1;3C": (Keys.Escape, Keys.Right),
230 "\x1b[1;3D": (Keys.Escape, Keys.Left),
231 "\x1b[1;3F": (Keys.Escape, Keys.End),
232 "\x1b[1;3H": (Keys.Escape, Keys.Home),
234 "\x1b[1;4A": (Keys.Escape, Keys.ShiftDown),
235 "\x1b[1;4B": (Keys.Escape, Keys.ShiftUp),
236 "\x1b[1;4C": (Keys.Escape, Keys.ShiftRight),
237 "\x1b[1;4D": (Keys.Escape, Keys.ShiftLeft),
238 "\x1b[1;4F": (Keys.Escape, Keys.ShiftEnd),
239 "\x1b[1;4H": (Keys.Escape, Keys.ShiftHome),
264 "\x1b[1;7A": (Keys.Escape, Keys.ControlDown),
265 "\x1b[1;7B": (Keys.Escape, Keys.ControlUp),
266 "\x1b[1;7C": (Keys.Escape, Keys.ControlRight),
267 "\x1b[1;7D": (Keys.Escape, Keys.ControlLeft),
268 "\x1b[1;7F": (Keys.Escape, Keys.ControlEnd),
269 "\x1b[1;7H": (Keys.Escape, Keys.ControlHome),
271 "\x1b[1;8A": (Keys.Escape, Keys.ControlShiftDown),
272 "\x1b[1;8B": (Keys.Escape, Keys.ControlShiftUp),
273 "\x1b[1;8C": (Keys.Escape, Keys.ControlShiftRight),
274 "\x1b[1;8D": (Keys.Escape, Keys.ControlShiftLeft),
275 "\x1b[1;8F": (Keys.Escape, Keys.ControlShiftEnd),
276 "\x1b[1;8H": (Keys.Escape, Keys.ControlShiftHome),
278 "\x1b[1;9A": (Keys.Escape, Keys.Up),
279 "\x1b[1;9B": (Keys.Escape, Keys.Down),
280 "\x1b[1;9C": (Keys.Escape, Keys.Right),
281 "\x1b[1;9D": (Keys.Escape, Keys.Left),
305 "\x1b[1;7p": (Keys.Escape, Keys.Control0),
306 "\x1b[1;7q": (Keys.Escape, Keys.Control1),
307 "\x1b[1;7r": (Keys.Escape, Keys.Control2),
308 "\x1b[1;7s": (Keys.Escape, Keys.Control3),
309 "\x1b[1;7t": (Keys.Escape, Keys.Control4),
310 "\x1b[1;7u": (Keys.Escape, Keys.Control5),
311 "\x1b[1;7v": (Keys.Escape, Keys.Control6),
312 "\x1b[1;7w": (Keys.Escape, Keys.Control7),
313 "\x1b[1;7x": (Keys.Escape, Keys.Control8),
314 "\x1b[1;7y": (Keys.Escape, Keys.Control9),
315 "\x1b[1;8p": (Keys.Escape, Keys.ControlShift0),
316 "\x1b[1;8q": (Keys.Escape, Keys.ControlShift1),
317 "\x1b[1;8r": (Keys.Escape, Keys.ControlShift2),
318 "\x1b[1;8s": (Keys.Escape, Keys.ControlShift3),
319 "\x1b[1;8t": (Keys.Escape, Keys.ControlShift4),
320 "\x1b[1;8u": (Keys.Escape, Keys.ControlShift5),
321 "\x1b[1;8v": (Keys.Escape, Keys.ControlShift6),
322 "\x1b[1;8w": (Keys.Escape, Keys.ControlShift7),
323 "\x1b[1;8x": (Keys.Escape, Keys.ControlShift8),
324 "\x1b[1;8y": (Keys.Escape, Keys.ControlShift9),