I have a list of suggestions and I want the editor to filter the displayed ones depending on the words typed before, For example if my list of suggestions is ['car', 'dog', 'pet'], if I type "wash." I only want 'car' to be shown as suggestion and if I type "get." I want 'pet' and 'dog' as suggestions.
Here is a sample of my code if it helps:
monaco.languages.registerCompletionItemProvider('typescript', {
triggerCharacters: ["."],
provideCompletionItems: () => ({ suggestions: createSuggestions(items) })
});
const createSuggestions = (list) => list.map(suggestion => ({
label: suggestion,
kind: monaco.languages.CompletionItemKind.Keyword,
insertText: suggestion
})
);
That happens automatically, when you provide a range in the completion item: