1 | #!/bin/keymap -l
|
---|
2 | #
|
---|
3 | # Raw key numbering for 101 keyboard...
|
---|
4 | # [sys] [brk]
|
---|
5 | # 0x7e 0x7f
|
---|
6 | # [esc] [ f1] [ f2] [ f3] [ f4] [ f5] [ f6] [ f7] [ f8] [ f9] [f10] [f11] [f12] [prn] [scr] [pau]
|
---|
7 | # 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0x09 0x0a 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 K E Y P A D K E Y S
|
---|
8 | #
|
---|
9 | # [ ` ] [ 1 ] [ 2 ] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 0 ] [ - ] [ = ] [bck] [ins] [hme] [pup] [num] [ / ] [ * ] [ - ]
|
---|
10 | # 0x11 0x12 0x13 0x14 0x15 0x16 0x17 0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x1e 0x1f 0x20 0x21 0x22 0x23 0x24 0x25
|
---|
11 | #
|
---|
12 | # [tab] [ q ] [ w ] [ e ] [ r ] [ t ] [ y ] [ u ] [ i ] [ o ] [ p ] [ [ ] [ ] ] [ \ ] [del] [end] [pdn] [ 7 ] [ 8 ] [ 9 ] [ + ]
|
---|
13 | # 0x26 0x27 0x28 0x29 0x2a 0x2b 0x2c 0x2d 0x2e 0x2f 0x30 0x31 0x32 0x33 0x34 0x35 0x36 0x37 0x38 0x39 0x3a
|
---|
14 | #
|
---|
15 | # [cap] [ a ] [ s ] [ d ] [ f ] [ g ] [ h ] [ j ] [ k ] [ l ] [ ; ] [ ' ] [ enter ] [ 4 ] [ 5 ] [ 6 ]
|
---|
16 | # 0x3b 0x3c 0x3d 0x3e 0x3f 0x40 0x41 0x42 0x43 0x44 0x45 0x46 0x47 0x48 0x49 0x4a
|
---|
17 | #
|
---|
18 | # [shift] [ z ] [ x ] [ c ] [ v ] [ b ] [ n ] [ m ] [ , ] [ . ] [ / ] [shift] [ up] [ 1 ] [ 2 ] [ 3 ] [ent]
|
---|
19 | # 0x4b 0x4c 0x4d 0x4e 0x4f 0x50 0x51 0x52 0x53 0x54 0x55 0x56 0x57 0x58 0x59 0x5a 0x5b
|
---|
20 | #
|
---|
21 | # [ctr] [cmd] [ space ] [cmd] [ctr] [lft] [dwn] [rgt] [ 0 ] [ . ]
|
---|
22 | # 0x5c 0x5d 0x5e 0x5f 0x60 0x61 0x62 0x63 0x64 0x65
|
---|
23 | #
|
---|
24 | # NOTE: On a Microsoft Natural Keyboard:
|
---|
25 | # left option = 0x66
|
---|
26 | # right option = 0x67
|
---|
27 | # menu key = 0x68
|
---|
28 | # NOTE: On an Apple Extended Keyboard:
|
---|
29 | # left option = 0x66
|
---|
30 | # right option = 0x67
|
---|
31 | # keypad '=' = 0x6a
|
---|
32 | # power key = 0x6b
|
---|
33 | Version = 3
|
---|
34 | CapsLock = 0x3b
|
---|
35 | ScrollLock = 0x0f
|
---|
36 | NumLock = 0x22
|
---|
37 | LShift = 0x4b
|
---|
38 | RShift = 0x56
|
---|
39 | LCommand = 0x5d
|
---|
40 | RCommand = 0x60
|
---|
41 | LControl = 0x5c
|
---|
42 | RControl = 0x00
|
---|
43 | LOption = 0x66
|
---|
44 | ROption = 0x5f
|
---|
45 | Menu = 0x68
|
---|
46 | #
|
---|
47 | # Lock settings
|
---|
48 | # To set NumLock, do the following:
|
---|
49 | # LockSettings = NumLock
|
---|
50 | #
|
---|
51 | # To set everything, do the following:
|
---|
52 | # LockSettings = CapsLock NumLock ScrollLock
|
---|
53 | #
|
---|
54 | LockSettings = NumLock
|
---|
55 | # Legend:
|
---|
56 | # n = Normal
|
---|
57 | # s = Shift
|
---|
58 | # c = Control
|
---|
59 | # C = CapsLock
|
---|
60 | # o = Option
|
---|
61 | # Key n s c o os C Cs Co Cos
|
---|
62 | Key 0x00 = '' '' '' '' '' '' '' '' ''
|
---|
63 | Key 0x01 = 0x1b 0x1b 0x1b 0x1b 0x1b 0x1b 0x1b 0x1b 0x1b
|
---|
64 | Key 0x02 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
65 | Key 0x03 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
66 | Key 0x04 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
67 | Key 0x05 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
68 | Key 0x06 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
69 | Key 0x07 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
70 | Key 0x08 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
71 | Key 0x09 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
72 | Key 0x0a = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
73 | Key 0x0b = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
74 | Key 0x0c = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
75 | Key 0x0d = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
76 | Key 0x0e = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
77 | Key 0x0f = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
78 | Key 0x10 = 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10 0x10
|
---|
79 | Key 0x11 = '' '~' '' ' ' '' '`' '~' ' ' ''
|
---|
80 | Key 0x12 = '1' '!' '' ' ' '' '1' '!' ' ' ''
|
---|
81 | Key 0x13 = '2' '@' 0x00 0xc2b2 '' '2' '@' 0xc2b2 ''
|
---|
82 | Key 0x14 = '3' '#' '' 0xc2b3 '' '3' '#' 0xc2b3 ''
|
---|
83 | Key 0x15 = '4' '$' '' 0xc2a3 '' '4' '$' 0xc2a3 ''
|
---|
84 | Key 0x16 = '5' '%' '' 0xc2a7 '' '5' '%' 0xc2a7 ''
|
---|
85 | Key 0x17 = '6' '^' 0x1e 0xc2b6 '' '6' '^' 0xc2b6 ''
|
---|
86 | Key 0x18 = '7' '&' '' ' ' '' '7' '&' ' ' ''
|
---|
87 | Key 0x19 = '8' '*' '' 0xc2a4 '' '8' '*' 0xc2a4 ''
|
---|
88 | Key 0x1a = '9' '(' '' 0xc2a6 '' '9' '(' 0xc2a6 ''
|
---|
89 | Key 0x1b = '0' ')' '' 0xc2b0 '' '0' ')' 0xc2b0 ''
|
---|
90 | Key 0x1c = '-' '_' 0x1f 0xc2b1 '' '-' '_' 0xc2b1 ''
|
---|
91 | Key 0x1d = '=' '+' '' 0xc2bd '' '=' '+' 0xc2bd ''
|
---|
92 | Key 0x1e = 0x08 0x08 0x08 0x08 0x08 0x08 0x08 0x08 0x08
|
---|
93 | Key 0x1f = 0x05 0x05 0x05 0x05 0x05 0x05 0x05 0x05 0x05
|
---|
94 | Key 0x20 = 0x01 0x01 0x01 0x01 0x01 0x01 0x01 0x01 0x01
|
---|
95 | Key 0x21 = 0x0b 0x0b 0x0b 0x0b 0x0b 0x0b 0x0b 0x0b 0x0b
|
---|
96 | Key 0x22 = '' '' '' '' '' '' '' '' ''
|
---|
97 | Key 0x23 = '/' '/' '/' '/' '/' '/' '/' '/' '/'
|
---|
98 | Key 0x24 = '*' '*' '*' '*' '*' '*' '*' '*' '*'
|
---|
99 | Key 0x25 = '-' '-' '-' '-' '-' '-' '-' '-' '-'
|
---|
100 | Key 0x26 = 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09 0x09
|
---|
101 | Key 0x27 = ';' ':' 0x11 ' ' '' ';' ':' ' ' ''
|
---|
102 | Key 0x28 = 0xcf82 0xce85 0x17 ' ' '' 0xcf82 0xce85 ' ' ''
|
---|
103 | Key 0x29 = 0xceb5 0xce95 0xcead 0xce88 '' 0xce95 0xceb5 0xe282ac ''
|
---|
104 | Key 0x2a = 0xcf81 0xcea1 0x12 0xc2ae '' 0xcea1 0xcf81 0xc2ae ''
|
---|
105 | Key 0x2b = 0xcf84 0xcea4 0x14 ' ' '' 0xcea4 0xcf84 ' ' ''
|
---|
106 | Key 0x2c = 0xcf85 0xcea5 0xcf8d 0xce8e 0xcf8b 0xcea5 0xceb0 0xceab ''
|
---|
107 | Key 0x2d = 0xceb8 0xce98 0x15 ' ' '' 0xce98 0xceb8 ' ' ''
|
---|
108 | Key 0x2e = 0xceb9 0xce99 0xceaf 0xce8a 0xcf8a 0xce99 0xce90 0xceaa ''
|
---|
109 | Key 0x2f = 0xcebf 0xce9f 0xcf8c 0xce8c '' 0xce9f 0xcebf ' ' ''
|
---|
110 | Key 0x30 = 0xcf80 0xcea0 0x10 ' ' '' 0xcea0 0xcf80 ' ' ''
|
---|
111 | Key 0x31 = '[' '{' 0x1b 0xc2ab '' '[' '{' 0xc2ab ''
|
---|
112 | Key 0x32 = ']' '}' 0x1d 0xc2bb '' ']' '}' 0xc2bb ''
|
---|
113 | Key 0x33 = '\\' '|' 0x1c 0xc2ac '' '\\' '|' 0xc2ac ''
|
---|
114 | Key 0x34 = 0x7f 0x7f 0x7f 0x7f 0x7f 0x7f 0x7f 0x7f 0x7f
|
---|
115 | Key 0x35 = 0x04 0x04 0x04 0x04 0x04 0x04 0x04 0x04 0x04
|
---|
116 | Key 0x36 = 0x0c 0x0c 0x0c 0x0c 0x0c 0x0c 0x0c 0x0c 0x0c
|
---|
117 | Key 0x37 = 0x01 '7' 0x01 0x01 '7' 0x01 '7' 0x01 '7'
|
---|
118 | Key 0x38 = 0x1e '8' 0x1e 0x1e '8' 0x1e '8' 0x1e '8'
|
---|
119 | Key 0x39 = 0x0b '9' 0x0b 0x0b '9' 0x0b '9' 0x0b '9'
|
---|
120 | Key 0x3a = '+' '+' '+' '+' '+' '+' '+' '+' '+'
|
---|
121 | Key 0x3b = '' '' '' '' '' '' '' '' ''
|
---|
122 | Key 0x3c = 0xceb1 0xce91 0xceac 0xe1bc84 '' 0xce91 0xceb1 ' ' ''
|
---|
123 | Key 0x3d = 0xcf83 0xcea3 0x13 ' ' '' 0xcea3 0xcf83 ' ' ''
|
---|
124 | Key 0x3e = 0xceb4 0xce94 0x04 ' ' '' 0xce94 0xceb4 ' ' ''
|
---|
125 | Key 0x3f = 0xcf86 0xcea6 0x06 ' ' '' 0xcea6 0xcf86 ' ' ''
|
---|
126 | Key 0x40 = 0xceb3 0xce93 0x07 ' ' '' 0xce93 0xceb3 ' ' ''
|
---|
127 | Key 0x41 = 0xceb7 0xce97 0xceae 0xce89 '' 0xce97 0xceb7 ' ' ''
|
---|
128 | Key 0x42 = 0xcebe 0xce9e 0x0a ' ' '' 0xce9e 0xcebe ' ' ''
|
---|
129 | Key 0x43 = 0xceba 0xce9a 0x0b ' ' '' 0xce9a 0xceba ' ' ''
|
---|
130 | Key 0x44 = 0xcebb 0xce9b 0x0c ' ' '' 0xce9b 0xcebb ' ' ''
|
---|
131 | Key 0x45 = 0xe1bfbd 0xc2a8 '' 0xe1bf8e '' 0xe1bfbd 0xc2a8 0xce85 ''
|
---|
132 | Key 0x46 = 0xe1bfaf 0xe1bfaf '' 0xe1bfaf 0xcb98 0xe1bfaf 0xcb98 '`' 0xcb98
|
---|
133 | Key 0x47 = 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a
|
---|
134 | Key 0x48 = 0x1c '4' 0x1c 0x1c '4' 0x1c '4' 0x1c '4'
|
---|
135 | Key 0x49 = '' '5' '' '' '5' '' '5' '' '5'
|
---|
136 | Key 0x4a = 0x1d '6' 0x1d 0x1d '6' 0x1d '6' 0x1d '6'
|
---|
137 | Key 0x4b = '' '' '' '' '' '' '' '' ''
|
---|
138 | Key 0x4c = 0xceb6 0xce96 0x1a ' ' '' 0xce96 0xceb6 ' ' ''
|
---|
139 | Key 0x4d = 0xcf87 0xcea7 0x18 ' ' '' 0xcea7 0xcf87 ' ' ''
|
---|
140 | Key 0x4e = 0xcf88 0xcea8 0x03 0xc2a9 '' 0xcea8 0xcf88 0xc2a9 ''
|
---|
141 | Key 0x4f = 0xcf89 0xcea9 0xcf8e 0xce8f '' 0xcea9 0xcf89 ' ' ''
|
---|
142 | Key 0x50 = 0xceb2 0xce92 0x02 ' ' '' 0xce92 0xceb2 ' ' ''
|
---|
143 | Key 0x51 = 0xcebd 0xce9d 0x0e ' ' '' 0xce9d 0xcebd ' ' ''
|
---|
144 | Key 0x52 = 0xcebc 0xce9c 0x0d ' ' '' 0xce9c 0xcebc ' ' ''
|
---|
145 | Key 0x53 = ',' '<' '' ' ' '' ',' '<' ' ' ''
|
---|
146 | Key 0x54 = '.' '>' '' ' ' '' '.' '>' ' ' ''
|
---|
147 | Key 0x55 = '/' '?' '' ' ' '' '/' '?' ' ' ''
|
---|
148 | Key 0x56 = '' '' '' '' '' '' '' '' ''
|
---|
149 | Key 0x57 = 0x1e 0x1e 0x1e 0x1e 0x1e 0x1e 0x1e 0x1e 0x1e
|
---|
150 | Key 0x58 = 0x04 '1' 0x04 0x04 '1' 0x04 '1' 0x04 '1'
|
---|
151 | Key 0x59 = 0x1f '2' 0x1f 0x1f '2' 0x1f '2' 0x1f '2'
|
---|
152 | Key 0x5a = 0x0c '3' 0x0c 0x0c '3' 0x0c '3' 0x0c '3'
|
---|
153 | Key 0x5b = 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a 0x0a
|
---|
154 | Key 0x5c = '' '' '' '' '' '' '' '' ''
|
---|
155 | Key 0x5d = '' '' '' '' '' '' '' '' ''
|
---|
156 | Key 0x5e = ' ' ' ' 0x00 ' ' ' ' ' ' ' ' ' ' ' '
|
---|
157 | Key 0x5f = '' '' '' '' '' '' '' '' ''
|
---|
158 | Key 0x60 = '' '' '' '' '' '' '' '' ''
|
---|
159 | Key 0x61 = 0x1c 0x1c 0x1c 0x1c 0x1c 0x1c 0x1c 0x1c 0x1c
|
---|
160 | Key 0x62 = 0x1f 0x1f 0x1f 0x1f 0x1f 0x1f 0x1f 0x1f 0x1f
|
---|
161 | Key 0x63 = 0x1d 0x1d 0x1d 0x1d 0x1d 0x1d 0x1d 0x1d 0x1d
|
---|
162 | Key 0x64 = 0x05 '0' 0x05 0x05 '0' '0' 0x05 0x05 '0'
|
---|
163 | Key 0x65 = 0x7f ',' 0x7f 0x7f ',' ',' 0x7f 0x7f ','
|
---|
164 | Key 0x66 = '' '' '' '' '' '' '' '' ''
|
---|
165 | Key 0x67 = '' '' '' '' '' '' '' '' ''
|
---|
166 | Key 0x68 = '' '' '' '' '' '' '' '' ''
|
---|
167 | Key 0x69 = '\\' '|' 0x1c ' ' '' '\\' '|' ' ' ''
|
---|
168 | Key 0x6a = '' '' '' '' '' '' '' '' ''
|
---|
169 | Key 0x6b = '' '' '' '' '' '' '' '' ''
|
---|
170 | Key 0x6c = '' '' '' '' '' '' '' '' ''
|
---|
171 | Key 0x6d = '' '' '' '' '' '' '' '' ''
|
---|
172 | Key 0x6e = '' '' '' '' '' '' '' '' ''
|
---|
173 | Key 0x6f = '' '' '' '' '' '' '' '' ''
|
---|
174 | Key 0x70 = '' '' '' '' '' '' '' '' ''
|
---|
175 | Key 0x71 = '' '' '' '' '' '' '' '' ''
|
---|
176 | Key 0x72 = '' '' '' '' '' '' '' '' ''
|
---|
177 | Key 0x73 = '' '' '' '' '' '' '' '' ''
|
---|
178 | Key 0x74 = '' '' '' '' '' '' '' '' ''
|
---|
179 | Key 0x75 = '' '' '' '' '' '' '' '' ''
|
---|
180 | Key 0x76 = '' '' '' '' '' '' '' '' ''
|
---|
181 | Key 0x77 = '' '' '' '' '' '' '' '' ''
|
---|
182 | Key 0x78 = '' '' '' '' '' '' '' '' ''
|
---|
183 | Key 0x79 = '' '' '' '' '' '' '' '' ''
|
---|
184 | Key 0x7a = '' '' '' '' '' '' '' '' ''
|
---|
185 | Key 0x7b = '' '' '' '' '' '' '' '' ''
|
---|
186 | Key 0x7c = '' '' '' '' '' '' '' '' ''
|
---|
187 | Key 0x7d = '' '' '' '' '' '' '' '' ''
|
---|
188 | Key 0x7e = '' '' '' '' '' '' '' '' ''
|
---|
189 | Key 0x7f = '' '' '' '' '' '' '' '' ''
|
---|
190 | Acute ' ' = 0xe1bfbd # oxia
|
---|
191 | Acute 0xce91 = 0xe1bebb # capital letter alpha with oxia
|
---|
192 | Acute 0xce95 = 0xe1bf89 # capital letter epsilon with oxia
|
---|
193 | Acute 0xce97 = 0xe1bf8b # capital leter eta with oxia
|
---|
194 | Acute 0xce99 = 0xe1bf9b # capital letter iota with oxia
|
---|
195 | Acute 0xce9f = 0xe1bfb9 # capital letter omicron with oxia
|
---|
196 | Acute 0xcea5 = 0xe1bfab # capital letter upsilon with oxia
|
---|
197 | Acute 0xcea9 = 0xe1bfbb # capital lettr omega with oxia
|
---|
198 | Acute 0xceb1 = 0xe1bdb1 # small letter alpha with oxia
|
---|
199 | Acute 0xceb5 = 0xe1bdb3 # small letter epsilon with oxia
|
---|
200 | Acute 0xceb9 = 0xe1bdb7 # small letter iota with oxia
|
---|
201 | Acute 0xcebf = 0xe1bdb9 # small letter omicron with oxia
|
---|
202 | Acute 0xcf85 = 0xe1bdbb # small letter ypsilon with oxia
|
---|
203 | Acute 0xcf89 = 0xe1bdbd # small letter omega with oxia
|
---|
204 | Acute 0xceb7 = 0xe1bdb5 # small letter eta with oxia
|
---|
205 | AcuteTab = Normal Shift CapsLock CapsLock-Shift
|
---|
206 | #AcuteTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift
|
---|
207 | Grave ' ' = 0xe1bfaf # varia
|
---|
208 | Grave 0xce91 = 0xe1beba # capital letter alpha plus varia
|
---|
209 | Grave 'E' = 0xc388
|
---|
210 | Grave 'I' = 0xc38c
|
---|
211 | Grave 'O' = 0xc392
|
---|
212 | Grave 'U' = 0xc399
|
---|
213 | Grave 0xceb1 = 0xe1bdb0 # small letter alpha with varia
|
---|
214 | Grave 0xceb5 = 0xe1bdb2 # small letter epsilon with varia
|
---|
215 | Grave 0xceb9 = 0xe1bdb6 # small letter iota with varia
|
---|
216 | Grave 0xcebf = 0xe1bdb8 # small letter omicron with varia
|
---|
217 | Grave 0xcf85 = 0xe1bdba # small letter ypsilon with varia
|
---|
218 | Grave 0xcf89 = 0xe1bdbc # small letter omega with varia
|
---|
219 | Grave 0xceb7 = 0xe1bdb4 # small letter eta with varia
|
---|
220 | GraveTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift
|
---|
221 | Circumflex ' ' = '^'
|
---|
222 | Circumflex 'A' = 0xc382
|
---|
223 | Circumflex 'E' = 0xc38a
|
---|
224 | Circumflex 'I' = 0xc38e
|
---|
225 | Circumflex 'O' = 0xc394
|
---|
226 | Circumflex 'U' = 0xc39b
|
---|
227 | Circumflex 'a' = 0xc3a2
|
---|
228 | Circumflex 'e' = 0xc3aa
|
---|
229 | Circumflex 'i' = 0xc3ae
|
---|
230 | Circumflex 'o' = 0xc3b4
|
---|
231 | Circumflex 'u' = 0xc3bb
|
---|
232 | Circumflex '' = ''
|
---|
233 | Circumflex '' = ''
|
---|
234 | Circumflex '' = ''
|
---|
235 | Circumflex '' = ''
|
---|
236 | Circumflex '' = ''
|
---|
237 | CircumflexTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift
|
---|
238 | Diaeresis ' ' = 0xc2a8 # mapping diaeresis to oxia
|
---|
239 | Diaeresis 0xce99 = 0xceaa # capital letter iota with dialitika
|
---|
240 | Diaeresis 0xcea5 = 0xceab
|
---|
241 | Diaeresis 0xceb9 = 0xcf8a
|
---|
242 | Diaeresis 0xcf85 = 0xcf8b
|
---|
243 | Diaeresis '' = ''
|
---|
244 | Diaeresis '' = ''
|
---|
245 | Diaeresis '' = ''
|
---|
246 | Diaeresis '' = ''
|
---|
247 | Diaeresis '' = ''
|
---|
248 | Diaeresis '' = ''
|
---|
249 | Diaeresis '' = ''
|
---|
250 | Diaeresis '' = ''
|
---|
251 | Diaeresis '' = ''
|
---|
252 | Diaeresis '' = ''
|
---|
253 | Diaeresis '' = ''
|
---|
254 | DiaeresisTab = Normal Shift CapsLock CapsLock-Shift
|
---|
255 | Tilde ' ' = 0xce85 # perispomeni
|
---|
256 | Tilde 0xceb9 = 0xce90
|
---|
257 | Tilde 0xcf85 = 0xceb0
|
---|
258 | Tilde '' = ''
|
---|
259 | Tilde '' = ''
|
---|
260 | Tilde '' = ''
|
---|
261 | Tilde '' = ''
|
---|
262 | Tilde '' = ''
|
---|
263 | Tilde '' = ''
|
---|
264 | Tilde '' = ''
|
---|
265 | Tilde '' = ''
|
---|
266 | Tilde '' = ''
|
---|
267 | Tilde '' = ''
|
---|
268 | Tilde '' = ''
|
---|
269 | Tilde '' = ''
|
---|
270 | Tilde '' = ''
|
---|
271 | TildeTab = Normal Shift Option Option-Shift CapsLock CapsLock-Shift CapsLock-Option CapsLock-Option-Shift
|
---|
272 |
|
---|
273 |
|
---|
274 |
|
---|
275 |
|
---|
276 |
|
---|
277 |
|
---|
278 |
|
---|
279 |
|
---|
280 |
|
---|
281 |
|
---|
282 |
|
---|
283 |
|
---|
284 |
|
---|
285 |
|
---|
286 |
|
---|
287 |
|
---|
288 |
|
---|
289 |
|
---|
290 |
|
---|