-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.72 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "click2run",
"displayName": "Click2Run",
"description": "Create custom buttons in the status bar to run any terminal commands.",
"version": "1.5.0",
"publisher": "cow2studios",
"engines": {
"vscode": "^1.80.0"
},
"icon":"assets/Logo.png",
"galleryBanner.color": {
"color": "#1a1a1a",
"theme": "dark"
},
"repository":"https://github.com/KavyaJP/Click2Run.git",
"main": "./extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"commands": [
{
"command": "click2run.addButton",
"title": "Click2Run: Add New Button"
},
{
"command": "click2run.manageButtons",
"title": "Click2Run: Manage Buttons (Delete, Edit)"
},
{
"command": "click2run.editButtonsFile",
"title": "Click2Run: Edit Buttons File (settings.json)"
},
{
"command": "click2run.exportButtons",
"title": "Click2Run: Export Buttons to a File"
},
{
"command": "click2run.importButtons",
"title": "Click2Run: Import Buttons from a File"
},
{
"command": "click2run.runButton1",
"title": "Click2Run: Run First Button"
},
{
"command": "click2run.runButton2",
"title": "Click2Run: Run Second Button"
},
{
"command": "click2run.runButton3",
"title": "Click2Run: Run Third Button"
},
{
"command": "click2run.showLogs",
"title": "Click2Run: Show Extension Logs"
}
],
"keybindings": [
{
"command": "click2run.runButton1",
"key": "ctrl+alt+1",
"mac": "cmd+alt+1"
},
{
"command": "click2run.runButton2",
"key": "ctrl+alt+2",
"mac": "cmd+alt+2"
},
{
"command": "click2run.runButton3",
"key": "ctrl+alt+3",
"mac": "cmd+alt+3"
}
],
"configuration": {
"title": "Click2Run",
"properties": {
"click2run.buttons": {
"type": "array",
"scope": "resource",
"default": [],
"description": "Your list of custom buttons for this workspace.",
"items": {
"type": "object",
"required": [
"text",
"command",
"id"
],
"properties": {
"id": { "type": "string" },
"text": { "type": "string" },
"tooltip": { "type": "string" },
"color": { "type": "string" },
"command": { "type": "string" },
"useNewTerminal": { "type": "boolean", "default": false },
"priority": { "type": "number", "default": 0 }
}
}
}
}
}
}
}