diff --git a/src/ansi-gli.ahk b/src/ansi-gli.ahk new file mode 100644 index 0000000..fe4cf17 --- /dev/null +++ b/src/ansi-gli.ahk @@ -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 +