gluon-lang / lsp-types

Types for communicating with a language server
MIT License
328 stars 86 forks source link

Fixed incorrect result type for InlineValueRequest #272

Closed tooltitude-support closed 5 months ago

tooltitude-support commented 11 months ago

The specification has InlineValue[] | null i.e. Option<Vec> (https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#textDocument_inlineValue). We have InlineValue | null i.e. Option.

tooltitude-support commented 5 months ago

Are there any plans to merge it?