fade2gray
fade2gray
I saw you post in the other repo. It might not suit you, but this is the solution I use - it does rely on the use of the `#Requires...
I think the key phrase taken from the image is, "Some Languages...". From the AutoHotkey [documentation](https://www.autohotkey.com/docs/Language.htm)... > An AutoHotkey script is basically a set of instructions for the program to...
Incorrect syntax used; the single double-quote needs to be escaped as `""""`. i.e. `StringReplace, Clipboard, Clipboard, """", , All` ...but, `StringReplace` has been [deprecated](https://www.autohotkey.com/docs/commands/StringReplace.htm), and you should be using `StrReplace`...
No, maybe I used the wrong terminology. I was just trying to show that the replacement string in the given snippet is incorrectly formatted, and the resulting syntax highlighting gives...
Yep, my bad.

See if this helps - [https://github.com/AutoHotkey-Plus/vscode-autohotkey/issues/40#issuecomment-699574617](https://github.com/AutoHotkey-Plus/vscode-autohotkey/issues/40#issuecomment-699574617)
Hi, I use some old ansi based scripts that I'm trying to convert and need to swap out the executables to see the effect of any changes I've made. I'm...
> > > Also, I assume when converting to v2 we will be changing exe frequently? When I say "ansi based scripts", I mean scripts that will only run using...
This solution prevents the use of the run command in the context menu. It also requires breakpoints to be stepped through if any have been set. Also, see #56.