microsoft / vscode-java-debug

Java Debugger for Visual Studio Code.
Other
531 stars 339 forks source link

Provide "Open type" button in variables' menu #1104

Open CsCherrYY opened 2 years ago

CsCherrYY commented 2 years ago

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.

Screenshot 2021-12-21 162341

sandipchitale commented 2 years ago

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.

sandipchitale commented 2 years ago

vscode-java-debug-ext addresses Open Actual Type command.

testforstephen commented 2 years ago

pls see https://github.com/microsoft/vscode-java-debug/blob/main/CONTRIBUTING.md about how to contribute to Java Debugger.