add a trigger char

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

@ -24,7 +24,7 @@ export class RemixInLineCompletionProvider implements monacoTypes.languages.Inli
endColumn: position.column, endColumn: position.column,
}); });
if (!word.endsWith(' ') && !word.endsWith('\n') && !word.endsWith(';')) { if (!word.endsWith(' ') && !word.endsWith('\n') && !word.endsWith(';') && !word.endsWith('.')) {
console.log('not a trigger char') console.log('not a trigger char')
return; return;
} }

Loading…
Cancel
Save