forked from withfig/autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.js
More file actions
41 lines (40 loc) · 634 Bytes
/
code.js
File metadata and controls
41 lines (40 loc) · 634 Bytes
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
var completionSpec = {
name: "code",
description: "Visual Studio Code",
args: {
template: "filepaths"
},
options: [
{
name: ["-d", "--diff"],
description: "Compare two files with each other.",
args: [
{
template: "filepaths"
},
{
template: "filepaths"
}
],
},
{
name: ["-a", "--add"],
description: "Add folder(s) to the last active window",
args: {
template: "folders"
}
},
{
name: ["-n", "--new-window"],
description: "Force to open a new window.",
args: [
{
template: "filepaths"
},
{
template: "filepaths"
}
],
},
]
}