-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.js
35 lines (30 loc) · 909 Bytes
/
extension.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// eslint-disable-next-line import/no-unresolved
const { commands, workspace } = require('vscode');
const {
checkInitialActivationConditions,
handleErrors,
brandMessage,
} = require('./helpers/local'); // fetchSnippets
const snipsnapActivate = require('./commands/activate');
function activate(context) {
checkInitialActivationConditions(workspace)
.then((packageUri) => {
// command registration
const disposable = commands.registerCommand(
'extension.snipsnap_activate',
() => snipsnapActivate(workspace, packageUri[0])
);
context.subscriptions.push(disposable);
// activating main fn right away
commands.executeCommand('extension.snipsnap_activate');
})
.catch(handleErrors);
}
exports.activate = activate;
function deactivate() {
brandMessage('The extension is turned off.');
}
module.exports = {
activate,
deactivate,
};