Created
July 30, 2024 21:37
-
-
Save chadschultz/8765138daed5fc7ffcd86cfa8f614f73 to your computer and use it in GitHub Desktop.
This file contains 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
#Requires AutoHotkey v2.0 | |
;^+v:: ; Ctrl + Shift + V | |
^!v:: ; Ctrl + Alt + V | |
{ | |
SendInput "{Raw}" A_Clipboard | |
; Ensure CTRL and ALT are released | |
SendInput "{Ctrl up}" | |
SendInput "{Alt up}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment