Update ansi-gli.ahk

This commit is contained in:
q3aql 2020-11-05 15:07:06 +01:00 committed by GitHub
parent 9da14c3307
commit 44fcc80c0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,54 +19,54 @@
Send, < Send, <
return return
; ;
;Map the Alt + X keys to show the ">" symbol ; Map the Alt + X keys to show the ">" symbol
!x:: !x::
Send, > Send, >
return return
; ;
;Map the AltGr + Shift (Left) + Z keys to show the "<" symbol ; Map the AltGr + Shift (Left) + Z keys to show the "<" symbol
<^>!+z:: <^>!+z::
Send, < Send, <
return return
; ;
;Map the AltGr + Shift (Left) + X keys to show the ">" symbol ; Map the AltGr + Shift (Left) + X keys to show the ">" symbol
<^>!+x:: <^>!+x::
Send, > Send, >
return return
; ;
;Map the AltGr + Z keys to show the "<" symbol ; Map the AltGr + Z keys to show the "<" symbol
<^>!z:: <^>!z::
Send, < Send, <
return return
; ;
;Map the AltGr + Z keys to show the ">" symbol ; Map the AltGr + Z keys to show the ">" symbol
<^>!x:: <^>!x::
Send, > Send, >
return return
; ;
; If you use a 60% Keyboard, maybe need the following combinations: ; If you use a 60% Keyboard, maybe need the following combinations:
; ;
;Map the AltGr + ' keys to show the "\" symbol (Spanish & Italian ISO config) ; Map the AltGr + ' keys to show the "\" symbol (Spanish & Italian ISO config)
<^>!':: <^>!'::
Send, \ Send, \
return return
; ;
;Map the AltGr + ¡ keys to show the "~" symbol (Spanish ISO config) ; Map the AltGr + ¡ keys to show the "~" symbol (Spanish ISO config)
;<^>!¡:: ;<^>!¡::
;Send, ~ ;Send, ~
;return ;return
; ;
;Map the AltGr + - keys to show the "\" symbol (ANSI & UK ISO config) ; Map the AltGr + - keys to show the "\" symbol (ANSI & UK ISO config)
<^>!-:: <^>!-::
Send, \ Send, \
return return
; ;
;Map the AltGr + Esc keys to show the "\" symbol ; Map the AltGr + Esc keys to show the "\" symbol
<^>!*Escape:: <^>!*Escape::
Send, \ Send, \
return return
; ;
;German and French configuration extra key combinations ; German and French configuration extra key combinations
<^>!+w:: <^>!+w::
Send, < Send, <
return return
@ -91,7 +91,7 @@ return
Send, < Send, <
return return
; ;
;Map Win + Alt to send AltGr command (for SK71 and SK64 keyboards) ; Map Win + Alt to send AltGr command (for SK71 and SK64 keyboards)
LWin & LAlt::RAlt LWin & LAlt::RAlt
return return
; ;