@@ -142,37 +142,41 @@ Here is the full list of predefined command actions grouped by the input type
142
142
commands ~
143
143
144
144
completion input type: text selection
145
- Will ask ChatGPT to complete the selected code.
145
+ Will ask LLM to complete the selected code.
146
146
147
- code_edit input type: text selection + arguments
148
- Will ask ChatGPT to apply the given instructions (the
147
+ code_edit input type: text selection [ + arguments ]
148
+ Will ask LLM to apply the given instructions (the
149
149
command args) to the selected code.
150
150
151
151
explain input type: text selection
152
- Will ask ChatGPT to explain the selected code.
152
+ Will ask LLM to explain the selected code.
153
153
154
154
question input type: text selection + arguments
155
- Will pass the commands args to ChatGPT and return the
155
+ Will pass the commands args to LLM and return the
156
156
answer in a text popup.
157
157
158
158
debug input type: text selection
159
- Will pass the code selection to ChatGPT analyze it for
159
+ Will pass the code selection to LLM analyze it for
160
160
bugs, the results will be in a text popup.
161
161
162
162
doc input type: text selection
163
- Will ask ChatGPT to document the selected code.
163
+ Will ask LLM to document the selected code.
164
164
165
165
opt input type: text selection
166
- Will ask ChatGPT to optimize the selected code.
166
+ Will ask LLM to optimize the selected code.
167
167
168
- tests input type: text selection
169
- Will ask ChatGPT to write unit tests for the selected
168
+ tests input type: text selection [ + arguments ]
169
+ Will ask LLM to write unit tests for the selected
170
170
code.
171
171
172
172
chat input type: command args
173
- Will pass the given command args to ChatGPT and return
173
+ Will pass the given command args to LLM and return
174
174
the response in a popup.
175
175
176
+ proofread input type: text selection [ + arguments ]
177
+ Ask LLM to review the selected snippet/buffer.
178
+
179
+
176
180
USING RANGE MODIFIER *codegpt-commands-range*
177
181
178
182
You can use the `:% ` range modifier `% <COMMAND> ` to call a
0 commit comments