From 5ee39dc67d7106d838968d0c6b66ea79d4d8b28f Mon Sep 17 00:00:00 2001 From: q3aql Date: Fri, 14 Aug 2020 15:00:38 +0200 Subject: [PATCH] Add source (v2.0) --- src/ansi-gli.ahk | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/ansi-gli.ahk 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 +