summaryrefslogtreecommitdiff
path: root/windows/autohotkey/Source/Keys-Qwert-to-Neo.ahk
blob: 0c14f19f2908b77faa27518627285750a8d063b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/*
   ------------------------------------------------------
   QWERTZ->Neo umwandlung
   ------------------------------------------------------
*/

; Reihe 1
*VKDCSC029::goto neo_tot1 ; Zirkumflex
*VK31SC002::goto neo_1
*VK32SC003::goto neo_2
*VK33SC004::goto neo_3
*VK34SC005::goto neo_4
*VK35SC006::goto neo_5
*VK36SC007::goto neo_6
*VK37SC008::
  if (!(einHandNeo) or !(spacepressed))
    goto neo_7
  else {
    keypressed := 1
    goto %gespiegelt_7%
  } 
*VK38SC009::
  if(!(einHandNeo) or !(spacepressed))
    goto neo_8
  else {
    keypressed := 1
    goto %gespiegelt_8%
  }
*VK39SC00A::
  if(!(einHandNeo) or !(spacepressed))
    goto neo_9
  else {
    keypressed := 1
    goto %gespiegelt_9%
  }
*VK30SC00B::
  if(!(einHandNeo) or !(spacepressed))
    goto neo_0
  else {
    keypressed := 1
    goto %gespiegelt_0%
  }
*VKDBSC00C:: ; ß
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_strich
    else {
      keypressed := 1
      goto %gespiegelt_strich%
    }
  } else goto neo_sz   
*VKDDSC00D::goto neo_tot2 ; Akut

; Reihe 2

VK09SC00F::goto neo_tab
*VK51SC010:: ; q (x)
  if !ahkTreiberKombi 
    goto neo_x
  else goto neo_q   
*VK57SC011:: ; w (v)
  if !ahkTreiberKombi 
    goto neo_v
  else goto neo_w   
*VK45SC012:: ; e (l)
  if !ahkTreiberKombi 
    goto neo_l
  else goto neo_e   
*VK52SC013:: ; r (c)
  if !ahkTreiberKombi 
    goto neo_c
  else goto neo_r   
*VK54SC014:: ; t (w)
  if !ahkTreiberKombi 
    goto neo_w
  else goto neo_t   
*VK5ASC015:: ; z (k) 
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_k
    else {
      keypressed := 1
      goto %gespiegelt_k%
    }
  }
  else goto neo_z   
*VK55SC016:: ; u (h)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_h
    else {
      keypressed := 1
      goto %gespiegelt_h%
    }
  } else goto neo_u   
*VK49SC017:: ; i (g)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_g
    else {
      keypressed := 1
      goto %gespiegelt_g%
    }
  }
  else goto neo_i   
*VK4FSC018:: ; o (f)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_f
    else {
      keypressed := 1
      goto %gespiegelt_f%
    }
  }
  else goto neo_o   
*VK50SC019:: ; p (q)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_q
    else {
      keypressed := 1
      goto %gespiegelt_q%
    }
  }
  else goto neo_p   
*VKBASC01A:: ; ü (ß)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_sz
    else {
      keypressed := 1
      goto %gespiegelt_sz%
    }
  } else goto neo_ü   
*VKBBSC01B:: ; + (tot3)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_tot3
    else {
      keypressed := 1
      goto %gespiegelt_tot3%
    }
  }

; Reihe 3
*VK41SC01E:: ; a (u)
  if !ahkTreiberKombi 
    goto neo_u
  else goto neo_a   
*VK53SC01F:: ; s (i)
  if !ahkTreiberKombi 
    goto neo_i
  else goto neo_s   
*VK44SC020:: ; d (a)
  if !ahkTreiberKombi 
    goto neo_a
  else goto neo_d   
*VK46SC021:: ; f (e)
  if !ahkTreiberKombi 
    goto neo_e
  else goto neo_f   
*VK47SC022:: ; g (o)
  if !ahkTreiberKombi 
    goto neo_o
  else goto neo_g   
*VK48SC023:: ; h (s)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_s
    else {
      keypressed := 1
      goto %gespiegelt_s%
    }
  } else goto neo_h   
*VK4ASC024:: ; j (n)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_n
    else {
      keypressed := 1
      goto %gespiegelt_n%
    }
  } else goto neo_j   
*VK4BSC025:: ; k (r)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_r
    else {
      keypressed := 1
      goto %gespiegelt_r%
    }
  } else goto neo_k   
*VK4CSC026:: ; l (t)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_t
    else {
      keypressed := 1
      goto %gespiegelt_t%
    }
  } else goto neo_l   
*VKC0SC027:: ; ö (d)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_d
    else {
      keypressed := 1
      goto %gespiegelt_d%
    }
  } else goto neo_ö   
*VKDESC028:: ; ä (y)
  if !ahkTreiberKombi 
    goto neo_y
  else goto neo_ä

; Reihe 4
*VK59SC02C:: ; y (ü)
  if !ahkTreiberKombi 
    goto neo_ü
  else goto neo_y   
*VK58SC02D:: ; x (ö)
  if !ahkTreiberKombi 
    goto neo_ö
  else goto neo_x   
*VK43SC02E:: ; c (ä)
  if !ahkTreiberKombi 
    goto neo_ä
  else goto neo_c
*VK56SC02F:: ; v (p)
  if !ahkTreiberKombi 
    goto neo_p
  else goto neo_v
*VK42SC030:: ; b (z)
  if !ahkTreiberKombi 
    goto neo_z
  else goto neo_b
*VK4ESC031:: ; n (b)
  if !ahkTreiberKombi {
    if(!(einHandNeo) or !(spacepressed))
      goto neo_b
    else {
      keypressed := 1
      goto %gespiegelt_b%
    }
  } else goto neo_n
*VK4DSC032:: ; m (m)
     if(!(einHandNeo) or !(spacepressed))
       goto neo_m
     else {
       keypressed := 1
       goto %gespiegelt_m%
      }
*VKBCSC033:: ; , (,)
     if(!(einHandNeo) or !(spacepressed))
       goto neo_komma
     else {
       keypressed := 1
       goto %gespiegelt_komma%
     }
*VKBESC034:: ; . (.)
     if(!(einHandNeo) or !(spacepressed))
       goto neo_punkt
     else {
       keypressed := 1
       goto %gespiegelt_punkt%
     }
*VKBDSC035:: ; - (j)
  if !ahkTreiberKombi {
     if(!(einHandNeo) or !(spacepressed))
       goto neo_j
     else {
       keypressed := 1
       goto %gespiegelt_j%
     }
  } else goto neo_strich

; Numpad
*VK90SC145::goto neo_NumLock
*VK6FSC135::goto neo_NumpadDiv
*VK6ASC037::goto neo_NumpadMult
*VK6DSC04A::goto neo_NumpadSub
*VK6BSC04E::goto neo_NumpadAdd
*VK0DSC11C::goto neo_NumpadEnter
*VK67SC047::                   ; NumPad7
*VK24SC047::goto neo_Numpad7   ; NumPadHome
*VK68SC048::                   ; NumPad8
*VK26SC048::goto neo_Numpad8   ; NumPadUp
*VK69SC049::                   ; NumPad9
*VK21SC049::goto neo_Numpad9   ; NumPadPgUp
*VK64SC04B::                   ; NumPad4
*VK25SC04B::goto neo_Numpad4   ; NumPadLeft
*VK65SC04C::                   ; NumPad5
*VK0CSC04C::goto neo_Numpad5   ; NumPadClear
*VK66SC04D::                   ; NumPad6
*VK27SC04D::goto neo_Numpad6   ; NumPadRight
*VK61SC04F::                   ; NumPad1
*VK23SC04F::goto neo_Numpad1   ; NumPadEnd
*VK62SC050::                   ; NumPad2
*VK28SC050::goto neo_Numpad2   ; NumPadDown
*VK63SC051::                   ; NumPad3
*VK22SC051::goto neo_Numpad3   ; NumPadPgDn
*VK60SC052::                   ; NumPad0
*VK2DSC052::goto neo_Numpad0   ; NumPadIns
*VK6ESC053::                   ; NumPadDot
*VK2ESC053::goto neo_NumpadDot ; NumPadIns