Last active
October 21, 2022 23:16
-
-
Save timheuer/a9f2951fff59998f9dbdeb86790017bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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