INNER CODE UNIT · TypeScript
activate
nils-soderman/vscode-unreal-python · src/extension.ts:14
export function activate(context: vscode.ExtensionContext) {
// Set the extension directory
utils.setExtensionUri(context.extensionUri);
// Register commands
context.subscriptions.push(
vscode.commands.registerCommand('ue-python.execute', () => {
execute.main();
})
);
context.subscriptions.push(
vscode.commands.registerCommand('ue-python.attach', () => {
attach.main();
})
);
context.subscriptions.push(