Skip to content

Commit

Permalink
Remove support for AHK v2 debugger (#390)
Browse files Browse the repository at this point in the history
* Mess with launch configs

* Open #385
  • Loading branch information
mark-wiemer authored Aug 9, 2023
1 parent b4930ad commit 697f44c
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 2 deletions.
21 changes: 20 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,31 @@
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"type": "ahk2",
"request": "launch",
"name": "AutoHotkey v2 Debugger",
"program": "${file}",
"stopOnEntry": true,
"runtime": "C:\\Program Files\\AutoHotkey\\v2\\AutoHotkey64.exe"
},
{
"type": "ahk",
"request": "launch",
"name": "AutoHotkey v1 Debugger",
"program": "${file}",
"stopOnEntry": true,
"runtime": "C:\\Program Files\\AutoHotkey\\v1.1.37.01\\AutoHotkeyU64.exe"
},
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": ["${workspaceRoot}/out/**/*.js"],
// "outFiles": ["${workspaceRoot}/out/**/*.js"],
"preLaunchTask": "dev"
},
{
Expand Down
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- `ahk++.file.interpreterPathV2` now defaults to `C:/Program Files/AutoHotkey/v2/AutoHotkey64.exe` ([Issue #387](https://github.com/mark-wiemer-org/ahkpp/issues/387))
- Add breakpoint support for AHK v2 files ([Issue #384](https://github.com/mark-wiemer-org/ahkpp/issues/384))
- Add AHK v2 debug config template ([Issue #385](https://github.com/mark-wiemer-org/ahkpp/issues/385))
<!-- - Add AHK v2 debug config template ([Issue #385](https://github.com/mark-wiemer-org/ahkpp/issues/385)) -->

## 5.0.0 - 2023-08-07 ✌️

Expand Down
24 changes: 24 additions & 0 deletions demos/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "ahk2",
"request": "launch",
"name": "AutoHotkey v2 Debugger",
"program": "${file}",
"stopOnEntry": true,
"runtime": "C:\\Program Files\\AutoHotkey\\v2\\AutoHotkey64.exe"
},
{
"type": "ahk",
"request": "launch",
"name": "AutoHotkey v1 Debugger",
"program": "${file}",
"stopOnEntry": true,
"runtime": "C:\\Program Files\\AutoHotkey\\v1.1.37.01\\AutoHotkeyU64.exe"
}
]
}

0 comments on commit 697f44c

Please sign in to comment.