Created
November 28, 2018 15:16
-
-
Save xates/aaf7745b4a62c973282f7644d73ac7a4 to your computer and use it in GitHub Desktop.
AutoHotkey script to simulate hotkeys provided in Ubuntu with Italian keyboard on Windows
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
| #NoEnv | |
| #SingleInstance Force | |
| SendMode Input | |
| ; Send ` when pressing ALT GR + ' | |
| <^>!'::Send `` | |
| ; Send ~ when pressing ALT GR + ì | |
| <^>!ì::Send ~ | |
| ; Send uppercase accented letters when caps lock is active | |
| #If GetKeyState("CapsLock", "T") | |
| à::Send À | |
| è::Send È | |
| é::Send É | |
| ì::Send Ì | |
| ò::Send Ò | |
| ù::Send Ù |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment