Skip to content

Instantly share code, notes, and snippets.

@markstreich
Created January 10, 2013 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markstreich/4502902 to your computer and use it in GitHub Desktop.
Save markstreich/4502902 to your computer and use it in GitHub Desktop.
AHK Clipboard Quote Escape
F12::
X:=""""
Y:=""""""
Z=%Clipboard%
StringReplace,Z,Z,%X%,%Y%,All
StringReplace,Z,Z,`n,,All
StringReplace,Z,Z,`r,,All
Clipboard=%Z%
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment