root/trunk/lib/pref/pref-gcu.prf

Revision 918, 0.7 kB (checked in by takkaria, 6 months ago)

Use consistent newlines everywhere, and also set the svn:eol-style property to native on all text files.

  • Property svn:eol-style set to native
Line 
1 # File: pref-gcu.prf
2
3 #
4 # This file may be included by "pref.prf", when using "main-gcu.prf".
5 #
6 # It contains macro definitions to allow the VT100 cursor keys to be
7 # recognized by Angband.  This will also make the "escape" key take a
8 # few seconds to recognize, so you may want to use the "`" key instead.
9 #
10
11
12 ### VT100 Keypad ###
13
14
15 # Special keypad keys (delete, insert)
16
17 A:.
18 P:\e[3~
19
20 A:0
21 P:\e[2~
22
23
24 # Numerical keypad keys (map to appropriate number)
25
26 A:1
27 P:\e[4~
28 P:\e[F
29
30 # down
31 A:\x8A
32 P:\e[B
33
34 A:3
35 P:\e[6~
36
37 # left
38 A:\x8B
39 P:\e[D
40
41 A:5
42 P:\e[E
43 P:\e[G
44
45 # right
46 A:\x8C
47 P:\e[C
48
49 A:7
50 P:\e[1~
51 P:\e[H
52
53 # up
54 A:\x8D
55 P:\e[A
56
57 A:9
58 P:\e[5~
59
60
61 # Basic function keys (F1 - F4)
62
63 A:\e
64 P:\eOP
65
66 A:\e
67 P:\eOQ
68
69 A:\e
70 P:\eOR
71
72 A:\e
73 P:\eOS
74
Note: See TracBrowser for help on using the browser.