I have tried to use this:
let disposable = vscode.commands.registerCommand('extension.helloWorld', function () {
vscode.window.createTerminal(`New terminal name`)
});
But, after running nothing happens.
I have tried to use this:
let disposable = vscode.commands.registerCommand('extension.helloWorld', function () {
vscode.window.createTerminal(`New terminal name`)
});
But, after running nothing happens.