mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
PR #168
This commit is contained in:
parent
8d83f270cf
commit
7f70ea7745
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ This document describes version 3.0 of the language server protocol. Major goals
|
|||
|
||||
- add support for client feature flags to support that servers can adapt to different client capabilities. An example is the new `textDocument/willSaveWaitUntil` request which not all clients might be able to support. If the feature is disabled in the client capabilities sent on the initialize request, the server can't rely on receiving the request.
|
||||
- add support to experiment with new features. The new `ClientCapabilities.experimential` section together with feature flags allow servers to provide experimental feature without
|
||||
- servers can more dynamically react to client features. Capabilites can now be register and unregistered after the initialize request using the new `client/registerCapability` and `client/unregisterCapability`. This for example allows servers to react to settings or configuration changes without a restart.
|
||||
- servers can more dynamically react to client features. Capabilites can now be registered and unregistered after the initialize request using the new `client/registerCapability` and `client/unregisterCapability`. This for example allows servers to react to settings or configuration changes without a restart.
|
||||
- add support for `textDocument/willSave` notification and `textDocument/willSaveWaitUntil` request.
|
||||
- add support for `textDocument/documentLink` request.
|
||||
- add a `rootUri` property to the initializeParams in favour of the `rootPath` property.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue