Add source (v2.0)
This commit is contained in:
parent
d2e207cf40
commit
5ee39dc67d
40
src/ansi-gli.ahk
Normal file
40
src/ansi-gli.ahk
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
;
|
||||||
|
; ################################################
|
||||||
|
; # ANSI-GLI - ANSI Greater & Less in ISO #
|
||||||
|
; # #
|
||||||
|
; # Autor: q3aql #
|
||||||
|
; # Contact: q3aql@protonmail.ch #
|
||||||
|
; # Licencia: GPL v2.0 #
|
||||||
|
; ################################################
|
||||||
|
; Version v2.0
|
||||||
|
;
|
||||||
|
; Map the Alt + Z keys to show the "<" symbol
|
||||||
|
!z::
|
||||||
|
Send, <
|
||||||
|
return
|
||||||
|
;
|
||||||
|
;Map the Alt + X keys to show the ">" symbol
|
||||||
|
!x::
|
||||||
|
Send, >
|
||||||
|
return
|
||||||
|
;
|
||||||
|
;Map the AltGr + Shift (Left) + Z keys to show the "<" symbol
|
||||||
|
<^>!+z::
|
||||||
|
Send, <
|
||||||
|
return
|
||||||
|
;
|
||||||
|
;Map the AltGr + Shift (Left) + X keys to show the ">" symbol
|
||||||
|
<^>!+x::
|
||||||
|
Send, >
|
||||||
|
return
|
||||||
|
;
|
||||||
|
;Map the AltGr + Z keys to show the "<" symbol
|
||||||
|
<^>!z::
|
||||||
|
Send, <
|
||||||
|
return
|
||||||
|
;
|
||||||
|
;Map the AltGr + Z keys to show the ">" symbol
|
||||||
|
<^>!x::
|
||||||
|
Send, >
|
||||||
|
return
|
||||||
|
|
Loading…
Reference in New Issue
Block a user