Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

extension.ts
import * as vscode from "vscode";
import nativeModule from "../out/native-module";

export function activate(context: vscode.ExtensionContext) {
	// The native module can't import the VSCode API itself, so pass it through here
	nativeModule.activate(vscode, context);
}

export function deactivate() {}