-
-
Save asheroto/e1b81dd5af3a354706f210a5acb71984 to your computer and use it in GitHub Desktop.
AutoHotKey script to paste text without formatting
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
; WindowsKey-V shortcut to paste text with no formatting | |
; (like Paste Special > Plain Text, but faster and works everywhere) | |
; for AutoHotKey | |
#v:: | |
ClipSaved := ClipboardAll | |
tempClipboard := clipboard | |
Clipboard := tempClipboard | |
Send ^v | |
Sleep, 500 | |
Clipboard := ClipSaved | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment