Turn Double Right-Click Into a Quick Clipboard Paste Shortcut
Reader Nakul writes in with a useful script that quickly pastes content from the clipboard into any application with nothing more than a double-click of your right mouse button.
Using the script is easy enough—just double-click the right mouse button anywhere that you want to paste, and the script will simulate the Ctrl+V shortcut, so this should even work when you are pasting something other than just text.
To create this function for yourself, simply make a new AutoHotkey script, or add the following to your existing one:
;Double Right Click to paste
~RButton::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500)
{






