Skip to content

Instantly share code, notes, and snippets.

@timheuer
Last active October 21, 2022 23:16
Show Gist options
  • Save timheuer/a9f2951fff59998f9dbdeb86790017bc to your computer and use it in GitHub Desktop.
Save timheuer/a9f2951fff59998f9dbdeb86790017bc to your computer and use it in GitHub Desktop.
const command1 = 'extension.command1';
const command1Handler = () => {
};
const command2 = 'extension.command2';
const command2Handler = () => {
};
context.subscriptions.push(
commands.registerCommand(command1, command1Handler),
commands.registerCommand(command2, command2Handler)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment