Skip to content

Instantly share code, notes, and snippets.

@EndBug
Created December 22, 2022 18:27
Show Gist options
  • Save EndBug/8c63bc61d64fa9f666fbf48a539794ec to your computer and use it in GitHub Desktop.
Save EndBug/8c63bc61d64fa9f666fbf48a539794ec to your computer and use it in GitHub Desktop.
AutoHotKey script to remap some US character to an Italian keyboard layout
; 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