// extension.js
// 定义命令并返回
let disposable = vscode.commands.registerCommand('vsplugin.helloWorld', () => {
// The code you place here will be executed every time your command is executed
// Display a message box to the user
vscode.window.showInformationMessage('Hello World from my-vs-plugin!');
})
// 注册命令
context.subscriptions.push(disposable);