fade2gray
fade2gray
Thank you for this script, it has been an immense help. Working v1 example: `RegExMatch(test_string, "O)()", match)` Incorrect v2 converter output: ````RegExMatch(test_string, "O)()", match)```` Acceptable v2 converter output: ````RegExMatch(test_string, "()",...
Please see ... [https://github.com/fade2gray/vscode-autohotkey-1/pull/1](https://github.com/fade2gray/vscode-autohotkey-1/pull/1)
## Question For example, you have saved a regex, changed it and saved it as a new version. You wish to keep the 2nd version and delete the 1st, but...
V1: ```ahk Run,% "*RunAs " ComSpec " /c .\folder\foo.exe .\folder\bar.sys " foobar, A_ScriptDir, Hide ``` V2 (Converted): ```ahk Run("*RunAs " A_ComSpec " /c .\folder\foo.exe .\folder\bar.sys " foobar, "A_ScriptDir", "Hide") ```...
Only the RedX appends any VI code in the GUI to `TempScript.ah1`, but even then the converter does not exit fully, needing to shut down using the tray menu. Shouldn't...