-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 3.65 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "copy-files-to-clipboard-llm",
"displayName": "copy-files-to-clipboard-llm",
"description": "Copies the contents of selected files in the VS Code explorer (with folder and file names) to the clipboard in a form suited for LLM's",
"version": "0.0.6",
"publisher": "AI_Andy__",
"engines": {
"vscode": "^1.70.0"
},
"activationEvents": [
"onStartupFinished",
"onCommand:extension.copyFilesToClipboard",
"onCommand:extension.copyFromHistory"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "extension.copyFilesToClipboard",
"title": "Copy Files to Clipboard (for LLMs)"
},
{
"command": "extension.copyFromHistory",
"title": "Copy From History (for LLMs)..."
},
{
"command": "historyView.openInView",
"title": "Edit Selection",
"icon": "$(edit)"
},
{
"command": "historyView.copySelection",
"title": "Copy Selection to Clipboard",
"icon": "$(clippy)"
},
{
"command": "historyView.renameSelection",
"title": "Rename",
"icon": "$(edit)"
},
{
"command": "historyView.duplicateSelection",
"title": "Duplicate Selection",
"icon": "$(copy)"
},
{
"command": "historyView.removeFile",
"title": "Remove",
"icon": "$(trash)"
},
{
"command": "historyView.addFileFromView",
"title": "Add",
"icon": "$(add)"
},
{
"command": "historyView.closeView",
"title": "Close",
"icon": "$(close)"
},
{
"command": "historyView.revealFile",
"title": "Reveal in Explorer"
},
{
"command": "historyView.addSelectedFiles",
"title": "Add to LLM Copy Selection"
}
],
"views": {
"explorer": [
{
"id": "historyView",
"name": "LLM Copy Selection",
"when": "copy-files-to-clipboard-llm.viewVisible"
}
]
},
"menus": {
"explorer/context": [
{
"command": "extension.copyFilesToClipboard",
"when": "explorerResourceIsFolder == false",
"group": "navigation"
},
{
"command": "extension.copyFromHistory",
"when": "copy-files-to-clipboard-llm.historySize > 0",
"group": "navigation"
},
{
"command": "historyView.addSelectedFiles",
"when": "copy-files-to-clipboard-llm.viewVisible",
"group": "navigation"
}
],
"view/title": [
{
"command": "historyView.copySelection",
"when": "view == historyView",
"group": "navigation@1"
},
{
"command": "historyView.closeView",
"when": "view == historyView",
"group": "navigation@3"
},
{
"command": "historyView.duplicateSelection",
"when": "view == historyView",
"group": "navigation@2"
}
],
"view/item/context": [
{
"command": "historyView.renameSelection",
"when": "view == historyView && viewItem == 'history'",
"group": "inline"
},
{
"command": "historyView.addFileFromView",
"when": "view == historyView && viewItem == 'file-to-add'",
"group": "inline"
},
{
"command": "historyView.removeFile",
"when": "view == historyView && viewItem == 'file'",
"group": "inline"
}
]
}
},
"scripts": {
"test": "echo \"No tests yet\""
},
"dependencies": {
"uuid": "^9.0.0"
}
}