mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Added missing allCommitCharacters to spec.
This commit is contained in:
parent
7e2ae2f9e5
commit
fddf9f286b
1 changed files with 10 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue