-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AHK V1 convert to V2 Error when code have variables with $
header.
#153
Comments
$
header.
In v2, variables names and function names can no longer start with the https://www.autohotkey.com/docs/v2/v2-changes.htm#names
What do you suggest it get converted to? If we simply remove the |
You can use the awesomeness of AHK unicode support and replace the ASCII values with fullwidth unicode ones
(or make it triple |
We could replace invalid characters with
Probably best solution, doing mass replace via the script can cause issues similar to #115 |
@eugenesvk I did some testing with your unicode characters and they don't seem to work? Am I using them wrong? |
I can run it is VSCode but not QuickConverter, strange |
is you default launcher AHK v2? |
Yes, could it be because the quickconverter binary is 32-bit? |
Error output example:
The function of the code is to use "Ctrl+G" key in the "Save as" or "Open" windows to jump to the using folder in File Explorer or Total Commander when using AHK v1:
AHK v1 code:
(Code comes from https://meta.appinn.net/t/topic/3743/34 by xml123)
The Generated Code has no change to the line of the example error.
$WinID := WinExist("A")
--->$WinID := WinExist("A")
I feel you can fix many bugs when correcting the generated code of this script. Thank you!
The text was updated successfully, but these errors were encountered: