; ; AutoHotkey Version: 1.0.482.0 ; Language: English ; Platform: Win9x/NT ; Author: Dustin Luck for Lifehacker ; ; Better Paste: ; Use Ctrl+V to paste unformatted text ; User Ctrl+Shift+V to paste normally ; #SingleInstance force #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and reliability. $^v:: ClipSaved := ClipboardAll ;save original clipboard contents clipboard = %clipboard% ;remove formatting Send ^v ;send the Ctrl+V command Clipboard := ClipSaved ;restore the original clipboard contents ClipSaved = ;clear the variable Return $^+v:: Send ^v ;just send the regular paste command Return