From a9571b7ca56cd57826ce03c2aefd072c00b80daf Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Mon, 20 Feb 2017 13:33:24 -0500 Subject: [PATCH] extension: remove HelloWorld --- extension.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/extension.js b/extension.js index f4b5c4a..6a9bbda 100644 --- a/extension.js +++ b/extension.js @@ -9,10 +9,6 @@ var dateFormat = require('dateformat'); function activate(context) { console.log('next-note: activated'); - context.subscriptions.push(vscode.commands.registerCommand('extension.sayHello', function () { - vscode.window.showInformationMessage('Hello World!'); - })); - context.subscriptions.push(vscode.commands.registerTextEditorCommand('extension.nextNoteInsertDate', function () { var editor = vscode.window.activeTextEditor; if (!editor) {