diff --git a/specification.md b/specification.md index 826025a..2e48801 100644 --- a/specification.md +++ b/specification.md @@ -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; /**