Import
Properties
Delete number of characters before the caret position, by default the letters from the beginning of the word.
Signature
deleteBackwards?: number;
detail property
A human-readable string with additional information about this item, like type or symbol information.
Signature
documentation property
Signature
documentation?: string;
A string that should be used when filtering a set of completion items. When the label
is used.
Signature
filterText?: string;
insertText property
A string or snippet that should be inserted in a document when selecting this completion. When falsy
the label
is used.
Signature
kind property
The kind of this completion item. An icon is chosen by the editor based on the kind.
kind?: CompletionItemKind | string;
The label of this completion item. By default this is also the text that is inserted when selecting this completion.
Signature
move property
Number of steps to move after the insertion, can be negative.
Signature
sortText property
A string that should be used when comparing this item with other items. When falsy
the label
is used.
Signature