-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontributes.disabled.json
More file actions
60 lines (60 loc) · 1.29 KB
/
contributes.disabled.json
File metadata and controls
60 lines (60 loc) · 1.29 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
{
"menus": {
"commandPalette": [
{
"command": "squarecloud.statusBarItem",
"when": "false"
},
{
"command": "squarecloud.setWorkspaceApp",
"when": "false"
},
{
"command": "squarecloud.commitWorkspace",
"when": "false"
},
{
"command": "squarecloud.uploadWorkspace",
"when": "false"
},
{
"command": "squarecloud.createConfig",
"when": "workspaceFolderCount == 1"
}
],
"editor/context": [
{
"command": "squarecloud.createConfig",
"when": "resourceFilename == squarecloud.app || resourceFilename == squarecloud.config"
}
],
"explorer/context": [
{
"command": "squarecloud.createConfig",
"when": "true"
}
]
},
"commands": [
{
"command": "squarecloud.createConfig",
"title": "%command.createConfig%"
},
{
"command": "squarecloud.statusBarItem",
"title": "Status Bar Item"
},
{
"command": "squarecloud.setWorkspaceApp",
"title": "Set Workspace App"
},
{
"command": "squarecloud.commitWorkspace",
"title": "Commit Workspace"
},
{
"command": "squarecloud.uploadWorkspace",
"title": "Upload Workspace"
}
]
}