summaryrefslogtreecommitdiffstats
path: root/ahk-assistant.ahk
diff options
context:
space:
mode:
Diffstat (limited to 'ahk-assistant.ahk')
-rw-r--r--ahk-assistant.ahk2
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 =