| View previous topic :: View next topic |
| Author |
Message |
xyzzy
Joined: 15 Oct 2008 Posts: 2
|
Posted: Wed Oct 15, 2008 12:33 am Post subject: Insert a literal "+" |
|
|
I want to insert a string with a literal "+" character. AHK, of course thinks "+" means SHIFT. I have found instructions for escaping other characters, but not for escaping "+".
So if I have:
:oc::chars:hello +1
I get:
hello !
But I want:
hello +1
Surely the answer is somewhere in the forum, but I can't find it.
Thanks in advance for your assistance. |
|
| Back to top |
|
 |
Fry
Joined: 01 Nov 2007 Posts: 885
|
Posted: Wed Oct 15, 2008 12:49 am Post subject: |
|
|
`+
 |
|
| Back to top |
|
 |
pokercurious
Joined: 16 Dec 2007 Posts: 48
|
|
| Back to top |
|
 |
xyzzy
Joined: 15 Oct 2008 Posts: 2
|
Posted: Wed Oct 15, 2008 1:02 am Post subject: |
|
|
Fry, your suggestion did not work. The ` doesn't seem to work before +.
pokercurious, a variation on your idea did work:
:oc::chars:hello {raw}+1
gives
hello +1
THANK YOU! |
|
| Back to top |
|
 |
Krogdor
Joined: 18 Apr 2008 Posts: 1390 Location: The Interwebs
|
Posted: Wed Oct 15, 2008 3:06 am Post subject: |
|
|
You can also...
|
|
| Back to top |
|
 |
|