1
1
export const chars = {
2
2
A : { key : "KeyA" , shift : true } ,
3
+ "Ä" : { key : "KeyA" , shift : true , trema : true } ,
3
4
B : { key : "KeyB" , shift : true } ,
4
5
C : { key : "KeyC" , shift : true } ,
5
6
D : { key : "KeyD" , shift : true } ,
@@ -14,12 +15,14 @@ export const chars = {
14
15
M : { key : "KeyM" , shift : true } ,
15
16
N : { key : "KeyN" , shift : true } ,
16
17
O : { key : "KeyO" , shift : true } ,
18
+ "Ö" : { key : "KeyO" , shift : true , trema : true } ,
17
19
P : { key : "KeyP" , shift : true } ,
18
20
Q : { key : "KeyQ" , shift : true } ,
19
21
R : { key : "KeyR" , shift : true } ,
20
22
S : { key : "KeyS" , shift : true } ,
21
23
T : { key : "KeyT" , shift : true } ,
22
24
U : { key : "KeyU" , shift : true } ,
25
+ "Ü" : { key : "KeyU" , shift : true , trema : true } ,
23
26
V : { key : "KeyV" , shift : true } ,
24
27
W : { key : "KeyW" , shift : true } ,
25
28
X : { key : "KeyX" , shift : true } ,
@@ -108,16 +111,13 @@ export const chars = {
108
111
"ü" : { key : "BracketLeft" } ,
109
112
"è" : { key : "BracketLeft" , shift : true } ,
110
113
"[" : { key : "BracketLeft" , altRight : true } ,
111
- "Ü" : { key : "BracketLeft" , capsLock : true } ,
112
114
"!" : { key : "BracketRight" , shift : true } ,
113
115
"]" : { key : "BracketRight" , altRight : true } ,
114
116
"ö" : { key : "Semicolon" } ,
115
117
"é" : { key : "Semicolon" , shift : true } ,
116
- "Ö" : { key : "Semicolon" , capsLock : true } ,
117
118
"ä" : { key : "Quote" } ,
118
119
"à" : { key : "Quote" , shift : true } ,
119
120
"{" : { key : "Quote" , altRight : true } ,
120
- "Ä" : { key : "Quote" , capsLock : true } ,
121
121
"$" : { key : "Backslash" } ,
122
122
"£" : { key : "Backslash" , shift : true } ,
123
123
"}" : { key : "Backslash" , altRight : true } ,
@@ -137,4 +137,4 @@ export const chars = {
137
137
"\n" : { key : "Enter" } ,
138
138
Enter : { key : "Enter" } ,
139
139
Tab : { key : "Tab" } ,
140
- } as Record < string , { key : string | number ; shift ?: boolean , altRight ?: boolean , space ?: boolean , capsLock ?: boolean } >
140
+ } as Record < string , { key : string | number ; shift ?: boolean , altRight ?: boolean , space ?: boolean , capsLock ?: boolean , trema ?: boolean } >
0 commit comments