redhat-developer / vscode-java

Java Language Support for Visual Studio Code
Eclipse Public License 2.0
2.08k stars 441 forks source link

Enable Navigation to Classes from Debug Console #3867

Open mamilic opened 1 day ago

mamilic commented 1 day ago

When running the application in run or debug mode, or when executing tests, it would improve the user experience if users could navigate to classes directly from the Debug Console using Ctrl+Click. A similar functionality is already available when logs are displayed in the terminal.

rgrunber commented 23 hours ago

Specifically, you mean that there is no link detection in "java.debug.settings.console": "internalConsole" while there is for "integratedTerminal" (default) ? Much like https://github.com/redhat-developer/vscode-java/issues/3822, this works because there is a link provider in https://github.com/microsoft/vscode-java-debug/ that handles this.

See https://github.com/microsoft/vscode/issues/210428 & https://github.com/microsoft/vscode/issues/34026 .

If the functionality is ever implemented in VS Code, I would request this against vscode-java-debug.

mamilic commented 23 hours ago

Hi @rgrunber , thanks a lot on response, did not know that this functionality is not available in VSCode.