Turn Double Right-Click Into a Quick Clipboard Paste Shortcut

PHOTO EMBED

Mon Dec 05 2022 03:39:23 GMT+0000 (Coordinated Universal Time)

Saved by @savabeh191 #autohotkey #0

;Double Right Click to paste
~RButton::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500)
{
Sleep 200 ; wait for right-click menu, fine tune for your PC
Send {Esc} ; close it
Send ^v ; or your double-right-click action here
}
Return
content_copyCOPY

https://lifehacker.com/turn-double-right-click-into-a-quick-clipboard-paste-sh-5314461