ahka

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

commit 8d37be097ded0204f5003868196d00f1598c0d45
parent 992856c9db2d9a9d29c8f11068066882e85f0ef3
Author: breadcat <peter.gill@chillitelecom.co.uk>
Date:   Thu, 15 Nov 2018 13:20:47 +0000

Add slash character replacement

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

diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk @@ -600,6 +600,7 @@ pasteClipboard() { ; manually paste clipboard, minus most formatting StringReplace, clipboard, clipboard, ·,, All ; remove middots StringReplace, clipboard, clipboard, %A_Tab%,, All ; remove tabs StringReplace, clipboard, clipboard, `r,, All ; remove half of line breaks + StringReplace, clipboard, clipboard, /,%A_Space%, All ; forward slashes mess up linux paths StringReplace, clipboard, clipboard, `n,, All ; remove other half of line breaks clipboard = %clipboard% ; trim whitespace SendRaw %clipboard%