You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
provideinlinecompletionitems of a vscode extension that provides completions is being triggered on every keystroke. Is there a way to configure the trigger time after certain debounce time (say 300ms) instead of every keystroke?
It makes sense to allow extension developer to adjust this debounce setting right? The completion provider service is likely to be flooded from the short debounce intervals. It should allow the extension developer to limit how frequent their provider is called. @hediet
provideinlinecompletionitems of a vscode extension that provides completions is being triggered on every keystroke. Is there a way to configure the trigger time after certain debounce time (say 300ms) instead of every keystroke?
Any idea why the debounce (https://github.com/microsoft/vscode/blob/e15b7b08a906b1e974a6a8bbd801c7c6863f7a2b/src/vs/editor/contrib/inlineCompletions/browser/inlineCompletionsModel.ts#L47) is not enforced here?
The text was updated successfully, but these errors were encountered: