diff options
-rw-r--r-- | ahk-assistant.ahk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index da08a6a..ac075e3 100644 --- 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 =
|