-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathextension.ts
More file actions
69 lines (41 loc) · 1.74 KB
/
extension.ts
File metadata and controls
69 lines (41 loc) · 1.74 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import * as vscode from 'vscode';
import { activate as activateLabelsAutoComplete } from './commands/labels/load';
import { activateLabelCreateOnPalette } from './commands/labels/create';
import { activate as activatePermissionSetCommands } from './commands/permsets/main';
import { activate as activeProjectFileWatcher } from './commands/appversion/main';
import { activate as activatePackageCommands } from './commands/packaging/main';
import { activate as activateFieldsCommands } from './commands/fields/main';
import { activate as activateSoqlPreviewCommands } from './commands/soql/preview/main';
import { activate as activateUserManagementCommands } from './commands/userenablement/main';
import { activate as sObjectPreviewCommands } from './commands/objects/main';
import { activate as activatePermissionEditor } from './commands/permissioneditor/main';
export function activate(context: vscode.ExtensionContext) {
// #region labels
activateLabelsAutoComplete(context);
activateLabelCreateOnPalette(context);
// #endregion
// #region permission sets
activatePermissionSetCommands(context);
// #endregion
// #region permission editor
activatePermissionEditor(context);
// #endregion
// #region watchers
activeProjectFileWatcher();
// #endregion
// #region package commands
activatePackageCommands(context);
// #endregion
// #region fields commands
activateFieldsCommands(context);
// #endregion
// #region fields commands
activateSoqlPreviewCommands(context);
// #endregion
// #region fields commands
activateUserManagementCommands(context);
// #endregion
// #region fields commands
sObjectPreviewCommands(context);
// #endregion
}