diff --git a/specification.md b/specification.md index 77ff344..d1704b1 100644 --- a/specification.md +++ b/specification.md @@ -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.