-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMain.sublime-commands
136 lines (136 loc) · 4 KB
/
Main.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[
{
"caption": "Copilot: Chat",
"command": "copilot_conversation_chat"
},
{
"caption": "Copilot: Explain",
"command": "copilot_conversation_chat",
"args": {
"message": "/explain"
}
},
{
"caption": "Copilot: Generate Tests",
"command": "copilot_conversation_chat",
"args": {
"message": "/tests"
}
},
{
"caption": "Copilot: Generate Docs",
"command": "copilot_conversation_chat",
"args": {
"message": "/doc"
}
},
{
"caption": "Copilot: Get Prompt",
"command": "copilot_get_prompt",
},
{
"caption": "Copilot: Fix This",
"command": "copilot_conversation_chat",
"args": {
"message": "/fix"
}
},
{
"caption": "Copilot: Simplify This",
"command": "copilot_conversation_chat",
"args": {
"message": "/simplify"
}
},
{
"caption": "Copilot: Feedback",
"command": "copilot_conversation_chat",
"args": {
"message": "/feedback"
}
},
{
"caption": "Copilot: Help",
"command": "copilot_conversation_chat",
"args": {
"message": "/help"
}
},
{
"caption": "Copilot: Destroy Conversation",
"command": "copilot_conversation_destroy"
},
{
// Debug Command
"caption": "Copilot: Conversation Agents",
"command": "copilot_conversation_agents",
},
{
// Debug Command
"caption": "Copilot: Conversation Templates",
"command": "copilot_conversation_templates",
},
{
"caption": "Copilot: Check Status",
"command": "copilot_check_status"
},
{
"caption": "Copilot: Check File Status",
"command": "copilot_check_file_status"
},
{
"caption": "Copilot: Get Panel Completions",
"command": "copilot_get_panel_completions"
},
{
"caption": "Copilot: Get Version",
"command": "copilot_get_version"
},
{
"caption": "Copilot: Sign In",
"command": "copilot_sign_in"
},
{
"caption": "Copilot: Sign In with Github Token",
"command": "copilot_sign_in_with_github_token"
},
{
"caption": "Copilot: Sign Out",
"command": "copilot_sign_out"
},
{
"caption": "Copilot: Edit CSS: Popup Completion",
"command": "copilot_prepare_and_edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/plugin/assets/[email protected]",
"user_file": "${packages}/LSP-copilot/plugin/assets/[email protected]",
"default": "/* User extra CSS rules: Popup Completion */\n/* CSS rules: https://www.sublimetext.com/docs/minihtml.html#css */\n",
},
},
{
"caption": "Copilot: Edit CSS: Panel Completion",
"command": "copilot_prepare_and_edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/plugin/assets/panel_completion.css",
"user_file": "${packages}/LSP-copilot/plugin/assets/panel_completion.custom.css",
"default": "/* User extra CSS rules: Panel Completion */\n/* CSS rules: https://www.sublimetext.com/docs/minihtml.html#css */\n",
},
},
{
"caption": "Copilot: Edit CSS: Chat Panel",
"command": "copilot_prepare_and_edit_settings",
"args": {
"base_file": "${packages}/LSP-copilot/plugin/assets/chat_panel.css",
"user_file": "${packages}/LSP-copilot/plugin/assets/chat_panel.custom.css",
"default": "/* User extra CSS rules: Chat Panel */\n/* CSS rules: https://www.sublimetext.com/docs/minihtml.html#css */\n",
},
},
{
"caption": "Copilot: Send Any Request",
"command": "copilot_send_any_request"
},
{
"caption": "Copilot: Debug Chat Commands",
"command": "copilot_conversation_debug"
}
]