-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Enable LSP go-to-definition, find-all-references, and go-to-implementation with command handler precedence #80951
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
Changes from 2 commits
a6810ee
84c9fbe
e37817f
93fcd0e
c63bb03
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -191,4 +191,14 @@ internal static class PredefinedCommandHandlerNames | |
| /// Command handler name for showing the Callstack Explorer tool window. | ||
| /// </summary> | ||
| public const string ShowCallstackExplorer = "Show Callstack Explorer"; | ||
|
|
||
| /// <summary> | ||
| /// Command handler name for LSP Go To Definition. | ||
| /// </summary> | ||
| public const string LspGoToDefinition = "LSP Go To Definition Command Handler"; | ||
|
||
|
|
||
| /// <summary> | ||
| /// Command handler name for LSP Find References. | ||
| /// </summary> | ||
| public const string LspFindReferences = "LSP Find References Command Handler"; | ||
|
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this one is "LSP GoToDefinitionCommandHandler" btw