How do I escape the '{' and '}' characters in an AutoHotKey script?

I'm trying to write a simple auto-replace script but can't find how to insert the '{}' characters.
The usual escape characters (backtick ` or backslash ) don't seem to work for curly brackets.
e.g.

:co:drf::$(document).ready(function(){space}`{`n`});{Left}{Left}{Left}{left}

gives

$(document).ready(function() );

rather than

 $(document).ready(function() { });

1 Answer

Encase your curly braces with curly braces. This prompts AutoHotkey to send the raw character.

{{} {}} 

AutoHotkey help file

3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like