I have the following two CompletionItems that are added to a CompletionSession when the letter 'f' is typed but only one item is shown (the one that the text and pretext match is shown). If I press backspace to clear the 'f' (but session is still open) then both items are visible. Is this expected? If so, how do I get both completion items to be displayed initially? Also, the match options set on the session are IsCaseSensitive and UseAcronyms. No filters are enabled.
CompletionItem("foobar", imageProvider, new DirectContentProvider("desc"), "foobar", null)
CompletionItem("foobar2", imageProvider, new DirectContentProvider("desc"), "baz", null)
Thanks,
Matt Yaeger