-
Notifications
You must be signed in to change notification settings - Fork 11
Description
Extension Name: AHK++
Version: v6.6.0
VS Code Version: v1.98.2
Operating System: Windows11 22H2 (Build 22621.1992)
Description of the Issue
When opening an AutoHotkey v1 script in Visual Studio Code with the AHK++ extension enabled, the debug console outputs hundreds of lines of logs related to file indexing and script building. This happens even though all logging, indexing, and output-related settings have been explicitly disabled in the settings.json file.
The issue persists despite the following settings being applied:
{
"ahkplusplus.logLevel": "none",
"ahkplusplus.showOutput": false,
"autohotkey.plus.plus.trace.server": "off",
"autohotkey.plus.plus.enableDebug": false,
"autohotkey.plus.plus.index.workspace": false,
"autohotkey.plus.plus.disableAllFeatures": true,
"autohotkey.plus.plus.disableIntelliSense": true,
"autohotkey.plus.plus.disableDiagnostics": true,
"autohotkey.plus.plus.disableIndexing": true,
"debug.console.filterMode": "exclude",
"debug.console.filter": ["*"]
}
Disabling the extension entirely stops the output, but this is not a viable solution as the extension is required for AHK v1 support in VS Code.
Steps to Reproduce:
- Install the AHK++ extension in Visual Studio Code.
- Apply the above settings in settings.json to disable logging, indexing, and output.
- Open an AutoHotkey v1 script in VS Code.
- Observe the debug console output.
- Expected Behavior
- No output should appear in the debug console when all logging, indexing, and output-related features are disabled.
Actual Behavior
The debug console outputs hundreds of lines of logs, including messages like:
pathsToBuild.exclude.folder:
pathsToBuild.exclude.file:
pathsToBuild checking root l:\Bagg\AHScripts
pathsToBuild opened root l:\Bagg\AHScripts
Building included paths:
(none)
buildPaths(0 paths)
buildScript document.uri.path: /l:/Bagg/AHScripts/.vscode/v1.ahk
buildScript script: {"funcDefs":[],"labels":[],"funcRefs":[],"variables":[],"blocks":[],"includedPaths":[]}
Metadata
Metadata
Assignees
Labels
Projects
Status