Created
December 22, 2022 18:27
-
-
Save EndBug/8c63bc61d64fa9f666fbf48a539794ec to your computer and use it in GitHub Desktop.
AutoHotKey script to remap some US character to an Italian keyboard layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; AltGr + ' -> ` | |
<^>!':: SendText "``" | |
; AltGr + ì -> ~ | |
<^>!ì::SendText "~" | |
; AltGr + < -> « | |
<^>!<::SendText "«" | |
; AltGr + > -> » | |
<^>!>::SendText "»" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment