refine VSC infeasible examples

This commit is contained in:
Siheng Zhao
2024-02-17 02:21:02 +08:00
parent aceb2a678d
commit 610457d838

View File

@@ -1,16 +1,40 @@
{ {
"id": "847a96b6-df94-4927-97e6-8cc9ea66ced7", "id": "847a96b6-df94-4927-97e6-8cc9ea66ced7",
"snapshot": "vscode", "snapshot": "vscode",
"instruction": "Please help me trim the video located at \"/home/user/test.mp4\" within VS Code, since I only want the second to fourth second part of this video.", "instruction": "Please help me open two workspaces \"/home/user/workspace1.code-workspace\" and \"/home/user/workspace2.code-workspace\" simultaneously in the same window.",
"source": "", "source": "",
"config": [ "config": [
{
"type": "command",
"parameters": {
"command": [
"mkdir",
"-p",
"/home/user/project1"
]
}
},
{
"type": "command",
"parameters": {
"command": [
"mkdir",
"-p",
"/home/user/project2"
]
}
},
{ {
"type": "download", "type": "download",
"parameters": { "parameters": {
"files": [ "files": [
{ {
"url": "", "url": "",
"path": "/home/user/test.mp4" "path": "/home/user/workspace1.code-workspace"
},
{
"url": "",
"path": "/home/user/workspace2.code-workspace"
} }
] ]
} }
@@ -19,8 +43,7 @@
"type": "launch", "type": "launch",
"parameters": { "parameters": {
"command": [ "command": [
"code", "code"
"/home/user/test.mp4"
] ]
} }
}, },