mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 00:28:52 +01:00
Fixes #137000. SelectedCompletionInfo now has the members completionKind and isSnippetText.
This commit is contained in:
@@ -1042,7 +1042,9 @@ class InlineCompletionAdapter {
|
||||
context.selectedSuggestionInfo
|
||||
? {
|
||||
range: typeConvert.Range.to(context.selectedSuggestionInfo.range),
|
||||
text: context.selectedSuggestionInfo.text
|
||||
text: context.selectedSuggestionInfo.text,
|
||||
isSnippetText: context.selectedSuggestionInfo.isSnippetText,
|
||||
completionKind: typeConvert.CompletionItemKind.to(context.selectedSuggestionInfo.completionKind),
|
||||
}
|
||||
: undefined,
|
||||
triggerKind: context.triggerKind
|
||||
|
||||
Reference in New Issue
Block a user