-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 878 Bytes
/
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
{
"name": "StackOnCopy",
"displayName": "StackO'n Copy",
"version": "0.0.2",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Other"
],
"main": "./build/extension.js",
"contributes": {
"commands": [
{
"command": "StackOnCopy.stackCpy",
"title": "Stack Cpy"
},
{
"command": "StackOnCopy.stackCpyFirstlink",
"title": "Stack Cpy Firstlink"
}
],
"configuration": {
"title": "StackO'n Copy",
"properties": {}
},
"keybindings": [
{
"command": "StackOnCopy.stackCpy",
"key": "ALT+/"
},
{
"command": "StackOnCopy.stackCpyFirstlink",
"key": "ALT+E"
}
]
},
"activationEvents": [
"onCommand:StackOnCopy.stackCpy",
"onCommand:StackOnCopy.stackCpyFirstlink"
],
"publisher": "RishideepChatterjee"
}