ahka

Assorted ease-of-use and functionality tools using AutoHotkey.
Log | Files | Refs

commit 2dc41deeafdf5dc8a28c0ec0682a0574148e05cf
parent 8589f5db278166bb2058a79bdc015da0fb2f3d08
Author: Peter <peter@minskio.co.uk>
Date:   Fri, 15 Jul 2022 13:40:53 +0100

Remove HTTP(S) prefixes

Diffstat:
Mahk-assistant.ahk | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk @@ -639,6 +639,8 @@ pasteClipboard() { StringReplace, tempClipboard, tempClipboard, +44,0, All ; remove international dialling code without a space StringReplace, tempClipboard, tempClipboard, `r,, All ; remove half of line breaks StringReplace, tempClipboard, tempClipboard, `n,, All ; remove other half of line breaks + StringReplace, tempClipboard, tempClipboard, https:,, All ; remove other half of line breaks + StringReplace, tempClipboard, tempClipboard, http:,, All ; remove other half of line breaks tempClipboard = %tempClipboard% ; trim whitespace SendRaw %tempClipboard% tempClipboard =