NE2HVJTRBUIUN3T56CJTB6KBHLDFP4HDYYQUHNFG6DZO6RTSPKIAC // Use the console to output diagnostic information (console.log) and errors (console.error)// This line of code will only be executed once when your extension is activatedconsole.log('Congratulations, your extension "pijul-vscode" is now active!');
// The native module can't import the VSCode API itself, so pass it through here
// The command has been defined in the package.json file// Now provide the implementation of the command with registerCommand// The commandId parameter must match the command field in package.jsonconst disposable = vscode.commands.registerCommand("pijul-vscode.helloWorld",() => {// The code you place here will be executed every time your command is executed// Display a message box to the uservscode.window.showInformationMessage("Hello World from pijul-vscode!");},);context.subscriptions.push(disposable);