From f4aff4107c2cbfc03664979caddc0934b070f9a2 Mon Sep 17 00:00:00 2001 From: zhangshichun Date: Sat, 22 Jun 2019 10:04:06 +0800 Subject: [PATCH] =?UTF-8?q?extension.sayHello2=E4=B8=8E=E6=B3=A8=E5=86=8C?= =?UTF-8?q?=E7=9A=84=E6=8C=87=E4=BB=A4=E4=B8=8D=E7=AC=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复extension.sayHello2 to extension.sayHello --- src/helloword.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helloword.js b/src/helloword.js index 6e6eb91..57da164 100644 --- a/src/helloword.js +++ b/src/helloword.js @@ -1,7 +1,7 @@ const vscode = require('vscode'); module.exports = function(context) { // 注册HelloWord命令 - context.subscriptions.push(vscode.commands.registerCommand('extension.sayHello2', () => { + context.subscriptions.push(vscode.commands.registerCommand('extension.sayHello', () => { vscode.window.showInformationMessage('Hello World!你好,小茗同学!'); })); -}; \ No newline at end of file +};