15 lines
597 B
TypeScript
15 lines
597 B
TypeScript
|
// 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";
|
||
|
|
||
|
import { SquiggleEditorProvider } from "./squiggleEditor";
|
||
|
|
||
|
// 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) {
|
||
|
context.subscriptions.push(SquiggleEditorProvider.register(context));
|
||
|
}
|
||
|
|
||
|
// this method is called when your extension is deactivated
|
||
|
export function deactivate() {}
|