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
The feature added recently to VSC (1.25) allows completion provider to specify which item should be initially selected in the completion list. By default clients usually select first or last used items, which is limiting. A completion provider may choose to select different item based on other conditions, such as current code editor context, probability of use of certain items, and so on.
This request is to add equivalent field to the CompletionItem structure therefore allowing use of preselection in VS Code from language servers as it is possible from the regular completion provider.
The text was updated successfully, but these errors were encountered:
New 'preselect' field in the ls.CompletionItem.
Per microsoft/vscode-languageserver-node#371
and
microsoft/vscode#35551
microsoft/vscode@62e0f34
The feature added recently to VSC (1.25) allows completion provider to specify which item should be initially selected in the completion list. By default clients usually select first or last used items, which is limiting. A completion provider may choose to select different item based on other conditions, such as current code editor context, probability of use of certain items, and so on.
This request is to add equivalent field to the CompletionItem structure therefore allowing use of preselection in VS Code from language servers as it is possible from the regular completion provider.
The text was updated successfully, but these errors were encountered: