Add getting started sample

This commit is contained in:
Jackson Kearl
2021-06-04 01:32:36 -07:00
parent f5e95b0e18
commit bde50e341a
16 changed files with 3391 additions and 0 deletions

View File

@ -0,0 +1,27 @@
// The module 'vscode' contains the VS Code extensibility API
// Import the module and reference it with the alias vscode in your code below
import * as vscode from 'vscode';
// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
export function activate(context: vscode.ExtensionContext): void {
context.subscriptions.push(vscode.commands.registerCommand('getting-started-sample.runCommand', async () => {
await new Promise(resolve => setTimeout(resolve, 1000));
vscode.commands.executeCommand('getting-started-sample.sayHello', vscode.Uri.joinPath(context.extensionUri, 'sample-folder'));
}));
context.subscriptions.push(vscode.commands.registerCommand('getting-started-sample.changeSetting', async () => {
await new Promise(resolve => setTimeout(resolve, 1000));
vscode.workspace.getConfiguration('getting-started-sample').update('sampleSetting', true);
}));
context.subscriptions.push(vscode.commands.registerCommand('getting-started-sample.setContext', async () => {
await new Promise(resolve => setTimeout(resolve, 1000));
vscode.commands.executeCommand('setContext', 'gettingStartedContextKey', true);
}));
context.subscriptions.push(vscode.commands.registerCommand('getting-started-sample.sayHello', () => {
vscode.window.showInformationMessage('Hello');
}));
}