Я узнал, что список предложений можно получить с помощью API сложных команд .
Имя команды: vscode.executeCompletionItemProvider
, и мы можем вызвать ее, используя vscode.commands.executeCommand
// the Position object gives you the line and character where the cursor is
const position = editor.selection.active;
// Get document Uri
const docUri = vscode.window.activeTextEditor.document.uri;
completionList = vscode.commands.executeCommand(
'vscode.executeCompletionItemProvider',
docUri,
position
)