Liking cljdoc? Tell your friends :D

dots.vscode.completion-item-provider

The completion item provider interface defines the contract between extensions and IntelliSense.

Providers can delay the computation of the {@linkcode CompletionItem.detail detail} and {@linkcode CompletionItem.documentation documentation} properties by implementing the {@linkcode CompletionItemProvider.resolveCompletionItem resolveCompletionItem}-function. However, properties that are needed for the initial sorting and filtering, like sortText, filterText, insertText, and range, must not be changed during resolve.

Providers are asked for completions either explicitly by a user gesture or -depending on the configuration- implicitly when typing words or trigger characters.

The completion item provider interface defines the contract between extensions and
[IntelliSense](https://code.visualstudio.com/docs/editor/intellisense).

Providers can delay the computation of the {@linkcode CompletionItem.detail detail}
and {@linkcode CompletionItem.documentation documentation} properties by implementing the
{@linkcode CompletionItemProvider.resolveCompletionItem resolveCompletionItem}-function. However, properties that
are needed for the initial sorting and filtering, like `sortText`, `filterText`, `insertText`, and `range`, must
not be changed during resolve.

Providers are asked for completions either explicitly by a user gesture or -depending on the configuration-
implicitly when typing words or trigger characters.
raw docstring

provide-completion-itemscljs

(provide-completion-items completion-item-provider
                          document
                          position
                          token
                          context)

Provide completion items for the given position and document.

Parameters:

  • document: TextDocument - The document in which the command was invoked.
  • position: Position - The position at which the command was invoked.
  • token: CancellationToken - A cancellation token.
  • context: CompletionContext - How the completion was triggered.

Returns: ProviderResult<T[] | CompletionList<T>> - An array of completions, a {@link CompletionListcompletion list}, or a thenable that resolves to either. The lack of a result can be signaled by returning undefined, null, or an empty array.

Provide completion items for the given position and document.

**Parameters:**
- `document`: `TextDocument` - The document in which the command was invoked.
- `position`: `Position` - The position at which the command was invoked.
- `token`: `CancellationToken` - A cancellation token.
- `context`: `CompletionContext` - How the completion was triggered.

**Returns:** `ProviderResult<T[] | CompletionList<T>>` - An array of completions, a {@link CompletionListcompletion list}, or a thenable that resolves to either.
The lack of a result can be signaled by returning `undefined`, `null`, or an empty array.
sourceraw docstring

resolve-completion-itemcljs

(resolve-completion-item completion-item-provider item token)

Given a completion item fill in more data, like {@link CompletionItem.documentation doc-comment} or {@link CompletionItem.detail details}.

The editor will only resolve a completion item once.

Note that this function is called when completion items are already showing in the UI or when an item has been selected for insertion. Because of that, no property that changes the presentation (label, sorting, filtering etc) or the (primary) insert behaviour ({@link CompletionItem.insertText insertText}) can be changed.

This function may fill in {@link CompletionItem.additionalTextEdits additionalTextEdits}. However, that means an item might be inserted before resolving is done and in that case the editor will do a best effort to still apply those additional text edits.

Parameters:

  • item: T - A completion item currently active in the UI.
  • token: CancellationToken - A cancellation token.

Returns: ProviderResult<T> - The resolved completion item or a thenable that resolves to of such. It is OK to return the given item. When no result is returned, the given item will be used.

Given a completion item fill in more data, like {@link CompletionItem.documentation doc-comment}
or {@link CompletionItem.detail details}.

The editor will only resolve a completion item once.

*Note* that this function is called when completion items are already showing in the UI or when an item has been
selected for insertion. Because of that, no property that changes the presentation (label, sorting, filtering etc)
or the (primary) insert behaviour ({@link CompletionItem.insertText insertText}) can be changed.

This function may fill in {@link CompletionItem.additionalTextEdits additionalTextEdits}. However, that means an item might be
inserted *before* resolving is done and in that case the editor will do a best effort to still apply those additional
text edits.

**Parameters:**
- `item`: `T` - A completion item currently active in the UI.
- `token`: `CancellationToken` - A cancellation token.

**Returns:** `ProviderResult<T>` - The resolved completion item or a thenable that resolves to of such. It is OK to return the given
`item`. When no result is returned, the given `item` will be used.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close