-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContext.sublime-menu
54 lines (54 loc) · 997 Bytes
/
Context.sublime-menu
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
[
{
"caption":"Pieces",
"children":
[
{
"caption": "Save to Pieces",
"command": "pieces_create_asset",
},
{
"caption": "Generate Shareable Link",
"command": "pieces_generate_shareable_link",
},
{
"id": "pieces-ask",
"caption": "Quick Actions",
"children":[
{
"caption": "Fix a bug",
"command": "pieces_ask_question",
"args":{"task":"fix"}
},
{
"caption": "Modify",
"command": "pieces_ask_question",
"args":{"task":"modify"}
},
{
"caption":"Add Code Comments",
"command": "pieces_ask_question",
"args":{"task":"comment"}
}
]
},
{
"id": "pieces-copilot",
"caption" : "Ask Copilot",
"children" : [
{
"caption": "Explain",
"command": "pieces_explain",
},
{
"caption":"About Current Selection",
"command":"pieces_ask_stream_about",
"args":{
"type":"section"
}
}
]
},
]
}
]