You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is what the spec says about extending capabilities with experimental features.
ClientCapabilities define capabilities for dynamic registration, workspace and text document features the client supports. The experimental can be used to pass experimental capabilities under development.
Note the last sense which says that experimental features should be registered within the capabilities.experimental object.
This is problematic for Sublime Text LSP client which currently only allows client handlers to extend the experimental capabilities.
The text was updated successfully, but these errors were encountered:
rchl
changed the title
Experimental capabilities should be define on the capabilities.experimental object
Experimental capabilities should be defined on the capabilities.experimental object
Nov 5, 2024
Currently the extension extends
textDocument.completion
capability object to add theeditsNearCursor
capability:vscode-clangd/src/clangd-context.ts
Lines 51 to 53 in 0c2d40d
This is what the spec says about extending capabilities with experimental features.
Note the last sense which says that experimental features should be registered within the
capabilities.experimental
object.This is problematic for Sublime Text LSP client which currently only allows client handlers to extend the experimental capabilities.
The text was updated successfully, but these errors were encountered: