-
Notifications
You must be signed in to change notification settings - Fork 420
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 missing LSP Handlers #2463
Add missing LSP Handlers #2463
Conversation
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.
one place of weird naming but otherwise seems OK
ExcludeDefinition = false | ||
}; | ||
|
||
var omnisharpResponse = await _findUsagesHandler.Handle(omnisharpRequest); |
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.
interesting - findusages returns a quick fix response that actually contains document highlights? Some strange naming
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.
a lot of history behind it 😀
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.
LGTM
Discovered as part of the work to move the C# extension over to using the O# LSP.
Other missing handlers:
InlayHintsHandler - Required csharp-language-server-protocol to update with the 3.17 spec. I believe this is currently in a feature branch.