Interface CodeCompletionAgent
interface CodeCompletionAgent { provideInlineCompletions(model,
position,
context,
token): Promise<undefined | InlineCompletions<InlineCompletion>>; } Methods
provideInlineCompletions
- provideInlineCompletions(model, position, context, token): Promise<undefined | InlineCompletions<InlineCompletion>>
Parameters
- model: ITextModel
- position: Position
- context: InlineCompletionContext
- token: CancellationToken
Returns Promise<undefined | InlineCompletions<InlineCompletion>>