autohotkey-plus
autohotkey-plus copied to clipboard
AutoHotkey language support for Visual Studio Code
参考如下,代码文件链接:https://github.com/TheArkive/JXON_ahk2/tree/master 因为无法识别单引号和转义字符,字符串内的 "{"、"[" 均会被识别为语法符号,导致格式化错乱 
Ref https://github.com/vscode-autohotkey/ahkpp/issues/279 by @fade2gray 1. Debug this script with a breakpoint on the first line: ```ahk ahk := "AutoHokey" ExitApp ``` 1. Stop debugging (click the red square in the...
Hello, There is this undesired behavior where everything before a double colon is recognized as a hotkey even if the double colon is inside a string. This messes up the...
This is a curious issue. I discovered that breakpoints aren't being obeyed on source files that are added to a OneDrive folder in Explorer. This took a while to discover...
The results are too aggresive: 
OS: Windows 10 Pro 64 bit AHK: 1.1.33.2 Installation Path: C:\Program Files\Other\AutoHotkey My copy of AHK is installed in a non-default location. At the moment vscode-autohotkey installs (apparently) ok, but...
Please see ... [https://github.com/fade2gray/vscode-autohotkey-1/pull/1](https://github.com/fade2gray/vscode-autohotkey-1/pull/1)
I tried add 'args' section in launch.json, but didn't work. How can I set startup arguments?
vscode 1.51.1 / vscode-autohotkey 2.60 / ahk 1.1.33.02 ``` #Requires AutoHotkey 1.1.33+ #Warn All #SingleInstance Force #NoEnv SetWorkingDir %A_ScriptDir% SetBatchLines -1 array := {} ; --- Something strange ; array[99]...
Hi, Go to definition works ok with multiple included files but i cant go to a function/symbol in other files. "Go to symbol in editor" works ok. For example; ----...