Skip to content

Instantly share code, notes, and snippets.

@aborruso
Last active May 6, 2019 19:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aborruso/84c4c761736a49c52b2b8ee9971f7704 to your computer and use it in GitHub Desktop.
Save aborruso/84c4c761736a49c52b2b8ee9971f7704 to your computer and use it in GitHub Desktop.
File a corredo del post http://bit.ly/2GRahIH
#SingleInstance Force
#installKeybdHook
#Persistent
Return ;
; "ALT + E" to have "È"
!e::SendInput {U+00C8}
return
; "ALT + -" to have "~"
!-::SendInput {U+007E}
Return
; "ALT + a" to have "À"
!a::SendInput {U+00C0}
Return
; "ALT + '" to have "`"
!'::SendInput {U+0060}
Return
; "ALT + o" to have "Ò"
!o::SendInput {U+00D2}
Return
; "ALT + u" to have "Ù"
!u::SendInput {U+00D9}
Return
;"CTRL +ALT + '" to have "```"
^!'::
loop 3
SendInput {U+0060}
Return
; "CTRL +ALT + h" to have "This is an {#}example text"
; The lines below are commented with ";", than "CTRL +ALT + h" does not work. Remove ";" to make it works
;^!h::
;Sendinput,
;(
;This is an {#}example text
;)
;Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment