mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Fix some typos
Change-Id: Idb67af2a9b0330c07167937eb7f9007287e54d6d Signed-off-by: othomann <Olivier_Thomann@ca.ibm.com>
This commit is contained in:
parent
ab04853401
commit
ee8610d8a5
1 changed files with 3 additions and 3 deletions
|
|
@ -3,11 +3,11 @@
|
|||
This document describes version 3.0 of the language server protocol. Major goals of the 3.0 version are:
|
||||
|
||||
- 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 expieriment with new features. The new `ClientCapabilities.experimential` section together with feature flags allow servers to provide experimental feature without
|
||||
- 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.
|
||||
- add support for `textDocument/willSave` notification and `textDocument/willSaveWaitUntil` request.
|
||||
- add support for `textDocument/documentLink` request.
|
||||
- add feature flag to indicate if the client support the new `range`property on `CompletionItem`.
|
||||
- add feature flag to indicate if the client support the new `range` property on `CompletionItem`.
|
||||
- add a `rootUri` property to the initializeParams in favour of the `rootPath` property.
|
||||
|
||||
An implementation for node of the 3.0 version of the protocol can be found [here](https://github.com/Microsoft/vscode-languageserver-node). The version is currently available at the next tag to allow for feedback. Plan is to release final 3.0 early 2017.
|
||||
|
|
@ -2043,7 +2043,7 @@ interface DocumentHighlight {
|
|||
*/
|
||||
export namespace DocumentHighlightKind {
|
||||
/**
|
||||
* A textual occurrance.
|
||||
* A textual occurrence.
|
||||
*/
|
||||
export const Text = 1;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue