; AHK Script to redirect Double-Shift to Ctrl+C and Double-Ctrl to Ctrl+V ; Idea came from this Reddit: https://www.reddit.com/r/AutoHotkey/comments/44pn3m/double_tap_short_cut/ ; done by daMax (//todamax.net) Shift:: if (A_PriorHotkey = "Shift" AND A_TimeSincePriorHotkey < 250) { ; MsgBox double-click Shift. Send, ^c } else { ; no double-click. just wait for the key to be released and move on with your life KeyWait, Shift return } Control:: if (A_PriorHotkey = "Control" AND A_TimeSincePriorHotkey < 250) { ;MsgBox double-click Control. Send, ^v } else { ; no double-click. just wait for the key to be released and move on with your life KeyWait, Control return }