mirror of
https://github.com/microsoft/language-server-protocol.git
synced 2025-12-23 08:48:16 +00:00
Introduce new CompletionTriggerKind for re-triggers
Added a new CompletionTriggerKind named TriggerForIncompleteCompletions. This will be used when completion requests were re-triggered because the current completion list is incomplete. Signed-off-by: Remy Suen <remy.suen@gmail.com>
This commit is contained in:
parent
a4c4f3a54f
commit
f9ddfb1cd2
1 changed files with 6 additions and 1 deletions
|
|
@ -2118,8 +2118,13 @@ export namespace CompletionTriggerKind {
|
|||
* the `triggerCharacters` properties of the `CompletionRegistrationOptions`.
|
||||
*/
|
||||
export const TriggerCharacter: 2 = 2;
|
||||
|
||||
/**
|
||||
* Completion was re-triggered as the current completion list is incomplete.
|
||||
*/
|
||||
export const TriggerForIncompleteCompletions: 3 = 3;
|
||||
}
|
||||
export type CompletionTriggerKind = 1 | 2;
|
||||
export type CompletionTriggerKind = 1 | 2 | 3;
|
||||
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue