Replies: 1 comment
-
As you can imagine, this is a hot topic. See microsoft/vscode#64367 and its many other duplicated/related issues. Unrelated to VS Code, I'm personally not aware of a way to turn this off in Monaco. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi! I want to add SQL functions autocompletion for my editor. However completions are filtered by any character entry. For example (on screenshot) there's an option 'system":
I'd like to have an option to filter by startsWith, so there'd be only strict entries (for "se" input only suggestions with "se" start). I guess I can add filtration of my suggestions inside registerCompletionItemProvider, however in that case it'd be necessary to trigger registerCompletionItemProvider at any character to have my custom filter. And I don't think it is a good idea. So is it a way to have such filtration on Monaco side?
I add suggestions like that:
Beta Was this translation helpful? Give feedback.
All reactions