Steve Gray
Steve Gray
AutoHotkey2.rc is referenced by the project files but not included in git. (I am assuming there is nothing tricky going on, like a build script generating the file. I have...
For the v2.0-beta3-H002 release, `A_AhkVersion` is reporting `2.0-beta.1`. v2.0-beta3-H002 itself is incorrect; there must be a `.` between the pre-release identifier and the numeral. Without this dot, version number comparisons...
Full disclosure: I am not using the "prerequisite" setup described in the readme. - I already had the SciTE source code downloaded. - Official SciTE uses Visual Studio 2019 and...
Input: ``` MsgBox % "Steve picked up his clipboard." MsgBox Steve opened his clipboard. ``` Incorrect output: ``` MsgBox("Steve picked up his A_Clipboard.") MsgBox("Steve opened his A_Clipboard.") ``` This is...
Input: ```AutoHotkey if RegExMatch(uri, "^\[url=") RegExMatch(uri, "\G[^\]]*", uri, 6) else { MsgBox 1,, URI appears invalid:`n%uri% IfMsgBox Cancel return } ``` Incorrect output: ```AutoHotkey if RegExMatch(uri, "^\[url=") RegExMatch(uri[0], "\G[^\]]*", &uri,...
With only helsmy/autohotkey-debug-adapter and vscode-autohotkey2-lsp enabled and a launch configuration in **settings.json**, the "port" setting in the launch configuration is ignored. Furthermore, it is overridden with the value "9002-9010", which...
`MenuSelect(,, "File")` is valid, but currently causes an error diagnostic because WinTitle is defined as mandatory. The AutoHotkey documentation misleadingly shows both WinTitle and WinText to be mandatory, but says...