Skip to content

Commit cd0d7bd

Browse files
committed
Removed sample comments
1 parent 50dbe60 commit cd0d7bd

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/extension.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,8 @@
11
'use strict';
2-
// The module 'vscode' contains the VS Code extensibility API
3-
// Import the module and reference it with the alias vscode in your code below
42
import * as vscode from 'vscode';
53
import * as process from 'child_process';
64

7-
8-
// this method is called when your extension is activated
9-
// your extension is activated the very first time the command is executed
105
export function activate(context: vscode.ExtensionContext) {
11-
// The command has been defined in the package.json file
12-
// Now provide the implementation of the command with registerCommand
13-
// The commandId parameter must match the command field in package.json
146
let disposable = vscode.commands.registerCommand('pico8.runCart', () => {
157
if (!vscode.window || !vscode.window.activeTextEditor) {
168
vscode.window.showInformationMessage("Error: Unable to find current document to execute.");
@@ -72,6 +64,5 @@ export function activate(context: vscode.ExtensionContext) {
7264
context.subscriptions.push(disposable);
7365
}
7466

75-
// this method is called when your extension is deactivated
7667
export function deactivate() {
7768
}

0 commit comments

Comments
 (0)