Skip to content

Commit

Permalink
Add: #147
Browse files Browse the repository at this point in the history
Support `Add to Watch` in the context menu of data inspection

Support `Copy as Expression` in the context menu of data inspection
  • Loading branch information
zero-plusplus committed Oct 14, 2021
1 parent 673cd82 commit 27582b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Also want to check the development status, check the [commit history](https://gi
* [#142](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/142) Support `suppressAnnounce` attribute in launch.json
* [#142](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/142) Support `useOutputDebug` attribute in launch.json
* [#147](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/147) Support ClearConsole directive
* [#148](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/148) Support `Add to Watch` and `Copy as Expression` in the context menu of data inspection

### Fixed
* [#146](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/146) Unable to retrieve child of child elements of logged objects
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ This extension is a debugger adapter for [VSCode](https://code.visualstudio.com/
* Added: [#142](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/142) Support `suppressAnnounce` attribute in launch.json
* [#142](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/142) Support `useOutputDebug` attribute in launch.json
* Added: [#147](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/147) Support ClearConsole directive
* Added: [#148](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/148) Support `Add to Watch` and `Copy as Expression` in the context menu of data inspection
* Fixed: [#146](https://github.com/zero-plusplus/vscode-autohotkey-debug/issues/146) Unable to retrieve child of child elements of logged objects
* Fixed: In launch.json, `skipFiles` and `skipFunctions` are not displayed in the IntelliSense in attach mode
* Fixed: In launch.json, snippets in attach mode is not displayed
Expand Down
1 change: 1 addition & 0 deletions src/ahkDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,7 @@ export class AhkDebugSession extends LoggingDebugSession {
type: variable.type,
indexedVariables: variable.indexedVariables,
namedVariables: variable.namedVariables,
evaluateName: variable.fullName,
})),
};
}
Expand Down

0 comments on commit 27582b8

Please sign in to comment.