-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Default.sublime-commands
83 lines (83 loc) · 1.39 KB
/
Default.sublime-commands
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
[
{
"caption": "OpenAI: Chat Model Select",
"command": "openai_panel",
"args": {
"files_included": false
}
},
{
"caption": "OpenAI: Handle image",
"command": "openai",
"args": {
"mode": "handle_image_input",
}
},
{
"caption": "OpenAI: Chat Model Select With Sheets",
"command": "openai_panel",
"args": {
"files_included": true
}
},
{
"caption": "OpenAI: New Message",
"command": "openai",
},
{
"caption": "OpenAI: New Message With Sheets",
"command": "openai",
"args": {
"files_included": true
}
},
{
"caption": "OpenAI: New Message With Build Output",
"command": "openai",
"args": {
"build_output": true
}
},
{
"caption": "OpenAI: Chat Model Select With Build Output",
"command": "openai_panel",
"args": {
"build_output": true
}
},
{
"caption": "OpenAI: New Message With LSP Output",
"command": "openai",
"args": {
"lsp_diagnostics": true
}
},
{
"caption": "OpenAI: Chat Model Select With LSP Output",
"command": "openai_panel",
"args": {
"lsp_diagnostics": true
}
},
{
"caption": "OpenAI: Reset Chat History",
"command": "openai",
"args": {
"mode": "reset_chat_history"
}
},
{
"caption": "OpenAI: Refresh Chat",
"command": "openai",
"args": {
"mode": "refresh_output_panel"
}
},
{
"caption": "OpenAI: Open in Tab",
"command": "openai",
"args": {
"mode": "create_new_tab"
}
}
]