Skip to content

Instantly share code, notes, and snippets.

@xmaxrayx
Forked from 0x4a/removeNewline.ahk
Created May 29, 2023 03:36
Show Gist options
  • Save xmaxrayx/03aae4a51f861bb4030c1bca42ca5a80 to your computer and use it in GitHub Desktop.
Save xmaxrayx/03aae4a51f861bb4030c1bca42ca5a80 to your computer and use it in GitHub Desktop.
remove newline character from #clipboard #work #string #ahk
; remove newline characters
; Win + X
#x::
Send ^x
StringReplace, clipboard, clipboard,`r`n,, All
Send ^v
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment