pull/5370/head
yann300 1 year ago
parent 1867261924
commit 83caab8561
  1. 2
      libs/remix-ui/editor/src/lib/providers/inlineCompletionProvider.ts

@ -13,7 +13,7 @@ export class RemixInLineCompletionProvider implements monacoTypes.languages.Inli
async provideInlineCompletions(model: monacoTypes.editor.ITextModel, position: monacoTypes.Position, context: monacoTypes.languages.InlineCompletionContext, token: monacoTypes.CancellationToken): Promise<monacoTypes.languages.InlineCompletions<monacoTypes.languages.InlineCompletion>> {
if (context.selectedSuggestionInfo) {
console.log('return empty from provideInlineCompletions')
console.log('return empty from provideInlineCompletions')
return;
}
// get text before the position of the completion

Loading…
Cancel
Save