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
whether vscode can change the mechanism that make me can get all all completionitem list include vscode itself provided in the following method provideCompletionItems in my vscode plugin? where I can know how vscode deal with this in vscode source?
yes, recently i was reading the vscode source and i want to know whether i can change the vscode source that make me can get all the completionitem list include vscode itself provided in method "provideCompletionItems".
Yes but with care only. With the Dec15 update you can invoke this command https://github.com/Microsoft/vscode/blob/master/src/vs/workbench/api/common/extHostLanguageFeatureCommands.ts#L55 to retrieve the same list of completions the UI would show. Note, that it will recurse into your provideCompletionItems call so that you must guard yourself to not recurse endless.
whether vscode can change the mechanism that make me can get all all completionitem list include vscode itself provided in the following method provideCompletionItems in my vscode plugin? where I can know how vscode deal with this in vscode source?
The text was updated successfully, but these errors were encountered: