vscode-java-debug
vscode-java-debug copied to clipboard
Provide "Open type" button in variables' menu
It would be great if we can provide this feature to help us open a type definition of a variable when debugging.
In IntelliJ, the similar feature names Jump To Type Source.

I am trying to implement this and some other commands available in Eclipse JDT Debugger. I have forked the repository. However when I try to debug the extension I always run into:
No delegateCommandHandler for vscode.java.startDebugSession
Reloading VSCode does not help as has been indicated elsewhere.
Is the correct way to develop this extension documented here.?
The strong motivation for this for me is that I can truly switch over to VS Code for Java development.
- All Instances
- All References
- Open Actual Type
- Open Declared Type
vscode-java-debug-ext addresses Open Actual Type command.
pls see https://github.com/microsoft/vscode-java-debug/blob/main/CONTRIBUTING.md about how to contribute to Java Debugger.