Last active
January 12, 2019 16:46
-
-
Save mahasak/be30f6b126ad60c5c43983852842a479 to your computer and use it in GitHub Desktop.
VS Code - extension scaffold
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as vscode from 'vscode'; | |
export function activate(context: vscode.ExtensionContext) { | |
console.log('Congratulations, your extension "idenExt" is now active!'); | |
let disposable = vscode.commands.registerCommand('extension.helloWorld', () => { | |
vscode.window.showInformationMessage('Hello World!'); | |
}); | |
context.subscriptions.push(disposable); | |
} | |
export function deactivate() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment