Added missing allCommitCharacters to spec.

This commit is contained in:
Dirk Baeumer 2019-05-07 16:40:30 +02:00
parent 7e2ae2f9e5
commit fddf9f286b

View file

@ -2540,7 +2540,7 @@ export interface ApplyWorkspaceEditResponse {
* Indicates whether the edit was applied or not.
*/
applied: boolean;
/**
* An optional textual description for why the edit was not applied.
* This may be used may be used by the server for diagnostic
@ -3049,6 +3049,15 @@ export interface CompletionRegistrationOptions extends TextDocumentRegistrationO
*/
triggerCharacters?: string[];
/**
* The list of all possible characters that commit a completion. This field can be used
* if clients don't support individual commmit characters per completion item. See
* `ClientCapabilities.textDocument.completion.completionItem.commitCharactersSupport`
*
* Since 3.2.0
*/
allCommitCharacters?: string[];
/**
* The server provides support to resolve additional
* information for a completion item.