forked from iamssen/vscode-touchbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.31 KB
/
package.json
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
{
"name": "vscode-ssen-touchbar",
"version": "0.1.2",
"description": "SSen's Touchbar Setting",
"main": "main.js",
"scripts": {
"test": "npm test",
"publish": "vsce package && open . && open https://marketplace.visualstudio.com/manage/publishers/iamssen",
"pack": "vsce package"
},
"author": "Seoyeon Lee <[email protected]>",
"publisher": "iamssen",
"license": "MIT",
"repository": "github:iamssen/vscode-touchbar",
"bugs": "https://github.com/iamssen/vscode-touchbar/issues",
"homepage": "https://github.com/iamssen/vscode-touchbar",
"engines": {
"vscode": "^1.17.0"
},
"activationEvents": [
"*"
],
"contributes": {
"commands": [
{
"command": "editor.action.revealDefinition",
"title": "Go To Definition"
},
{
"command": "editor.action.goToReferences",
"title": "Go To References"
},
{
"command": "workbench.action.showCommands",
"title": "CMD"
},
{
"command": "typescript.restartTsServer",
"title": "Restart TSServer"
},
{
"command": "ssen.touchbar.run",
"title": "Run"
},
{
"command": "ssen.touchbar.debug",
"title": "Debug"
},
{
"command": "workbench.action.terminal.openNativeConsole",
"title": "Terminal"
}
],
"menus": {
"touchBar": [
{
"command": "editor.action.goToReferences",
"group": "g2",
"when": "editorHasReferenceProvider"
},
{
"command": "editor.action.revealDefinition",
"group": "g1",
"when": "editorHasDefinitionProvider"
},
{
"command": "workbench.action.showCommands",
"group": "g3"
},
{
"command": "typescript.restartTsServer",
"group": "g4"
},
{
"command": "ssen.touchbar.run",
"group": "g5",
"when": "!inDebugMode"
},
{
"command": "ssen.touchbar.debug",
"group": "g6",
"when": "!inDebugMode"
},
{
"command": "workbench.action.terminal.openNativeConsole",
"group": "g7"
}
]
},
"configuration": {
"type": "object",
"title": "SSen's Touchbar Config"
}
}
}