mirror of
https://github.com/hexedtech/codemp-vscode.git
synced 2024-11-26 09:24:47 +01:00
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
|
const vscode = require("vscode");
|
||
|
|
||
|
module.exports = {
|
||
|
activate,
|
||
|
deactivate,
|
||
|
};
|
||
|
|
||
|
function activate(context) {
|
||
|
// This must match the command property in the package.json
|
||
|
const commandID = "codemp.connect";
|
||
|
let disposable = vscode.commands.registerCommand(commandID, sayHello);
|
||
|
context.subscriptions.push(disposable);
|
||
|
}
|
||
|
|
||
|
function connect() {
|
||
|
vscode.window.showInformationMessage("Connecting to CodeMP!");
|
||
|
}
|
||
|
|
||
|
function deactivate() {}
|