-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Default.sublime-keymap
94 lines (94 loc) · 2.87 KB
/
Default.sublime-keymap
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
[
{
"keys": ["ctrl+c"],
"command": "stop_openai_execution",
"context": [
{ "key": "openai_worker_running", "operator": "equal", "operand": true },
]
}
// {
// "keys": [
// "super+k",
// "super+'"
// ],
// This command sends new message and selected text within the active tab
// to the server.
// Equal to `OpenAI completion: Chat Model Select`
// "command": "openai",
// },
// {
// "keys": [
// "super+k",
// "super+'"
// ],
// This command sends new message and all the active Sheets within the active Views Group
// to the server.
// Equal to `OpenAI completion: Chat Model Select`
// "command": "openai",
// "args": {
// "files_included": true
// }
// },
// {
// "keys": [
// "super+k",
// "super+["
// ],
// This command pops up assistants settings palette and then sends new message
// and all the active Sheets within the active Views Group to the server.
// Equal to `OpenAI completion: New Message`
// "command": "openai_panel",
// "args": {
// "files_included": true
// }
// },
// {
// "keys": [],
// This command sends image on path to the server
// It read history but never stores image in it, it writes the response in history thought.
// Equal to `OpenAI completion: Handle Image`
// "command": "openai",
// "args": {
// "mode": "handle_image_input"
// }
// },
// {
// "keys": [],
// This command creates a new output tab for itself in the window
// Equal to `OpenAI completion: Open in Tab`
// "command": "openai",
// "args": {
// "mode": "create_new_tab"
// }
// },
// {
// "keys": [],
// This command refreshes (reloads) chat log from the history storage
// Equal to `OpenAI completion: Refresh Chat`
// "command": "openai",
// "args": {
// "mode": "refresh_output_panel"
// }
// },
// {
// "keys": [],
// This command deletes current history
// Equal to `OpenAI completion: Reset Chat History`
// "command": "openai",
// "args": {
// "mode": "reset_chat_history"
// }
// },
// {
// "keys": [
// "super+k",
// "super+;"
// ],
// This command shows history output panel, it doesn't refresh it or something
// just pops it up
// "command": "show_panel",
// "args": {
// "panel": "output.AI Chat"
// }
// },
]