Skip to content

Instantly share code, notes, and snippets.

@asheroto
Forked from jadient/PastePlainText.ahk
Last active March 9, 2021 02:48
Show Gist options
  • Save asheroto/e1b81dd5af3a354706f210a5acb71984 to your computer and use it in GitHub Desktop.
Save asheroto/e1b81dd5af3a354706f210a5acb71984 to your computer and use it in GitHub Desktop.
AutoHotKey script to paste text without formatting
; 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