forked from stef-levesque/vscode-multiclip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.45 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "vscode-multiclip",
"displayName": "Multiple clipboards for VSCode",
"description": "Override the regular Copy and Cut commands to keep selections in a clipboard ring",
"version": "0.0.4",
"publisher": "slevesque",
"license": "LICENSE.md",
"icon": "icon.png",
"bugs": {
"url": "https://github.com/stef-levesque/vscode-multiclip/issues"
},
"homepage": "https://github.com/stef-levesque/vscode-multiclip/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/stef-levesque/vscode-multiclip.git"
},
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"keywords": [
"vscode",
"copy",
"multiple",
"clipboard"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "multiclip.copy",
"title": "Multiclip Copy"
},
{
"command": "multiclip.cut",
"title": "Multiclip Cut"
},
{
"command": "multiclip.paste",
"title": "Multiclip Paste"
},
{
"command": "multiclip.clearBuffer",
"title": "Clear Multiclip Buffer"
},
{
"command": "multiclip.copyMerge",
"title" : "Multiclip Copy and Merge to Clipboard"
},
{
"command": "multiclip.cutMerge",
"title" : "Multiclip Cut and Merge to Clipboard"
}
],
"keybindings": [
{
"key": "ctrl+c",
"mac": "cmd+c",
"command": "multiclip.copy",
"when": "editorTextFocus"
},
{
"key": "ctrl+x",
"mac": "cmd+x",
"command": "multiclip.cut",
"when": "editorTextFocus"
},
{
"key": "alt+ctrl+v",
"mac": "alt+cmd+v",
"command": "multiclip.list",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+v",
"mac": "shift+cmd+v",
"command": "multiclip.paste",
"when": "editorTextFocus && editorLangId != 'markdown'"
},
{
"key": "shift+ctrl+c",
"mac": "shift+cmd+c",
"command": "multiclip.copyMerge",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+x",
"mac": "shift+cmd+x",
"command": "multiclip.cutMerge",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
}
}