3N3RS66TMPGMAKX3CP2HWWGAB24Z5FZEWFPKTJEWULC7CHHMWTGAC
// 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) {
async function _activate(context: vscode.ExtensionContext, disposables: vscode.Disposable[]) {
vscode.window.showInformationMessage("Pijul repository detected in workspace, extension has been activated.");
console.log('Pijul VS Code Integration Activated');
const outputChannel = vscode.window.createOutputChannel("Pijul");
disposables.push(outputChannel);
disposables.push(vscode.commands.registerCommand("pijul.showOutput", () => outputChannel.show()));
// this method is called when your extension is activated
// your extension is activated the very first time the command is executed
export async function activate(context: vscode.ExtensionContext) {
const disposables: vscode.Disposable[] = [];
context.subscriptions.push(
new vscode.Disposable(() => vscode.Disposable.from(...disposables).dispose())
);
await _activate(context, disposables).catch(err => console.error(err));
}