-
Notifications
You must be signed in to change notification settings - Fork 29.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Goto Declaration #62483
Comments
All pretty straight forward: https://github.com/Microsoft/vscode/blob/f6bf792deab85e59e971096dc58a502d24cedaf9/src/vs/vscode.proposed.d.ts#L25-L50 The only weird thing is that the return type is |
What about aliasing it to |
Yeah,
|
This is now in latest insiders |
@jrieken Fixed the smoketest. |
@jrieken thanks |
VS Code currently only supports
Goto Defintition
inside the editor. However there are languages like C++ that distinguish between declarations and definitions. We should add official support to haveGoto Declaration
in the UI and a corresponding provider in the API.This should also include a corresponding complex command to invoke the request.
The text was updated successfully, but these errors were encountered: