Skip to content

Instantly share code, notes, and snippets.

@mahasak
Last active January 12, 2019 16:46
Show Gist options
  • Save mahasak/be30f6b126ad60c5c43983852842a479 to your computer and use it in GitHub Desktop.
Save mahasak/be30f6b126ad60c5c43983852842a479 to your computer and use it in GitHub Desktop.
VS Code - extension scaffold
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