Skip to content

Commit 61500a9

Browse files
committed
Rename custom command open chat to send message
1 parent fad5fae commit 61500a9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Core/Sources/HostApp/CustomCommandView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ struct CustomCommandView: View {
6262
Group {
6363
switch command.feature {
6464
case .chatWithSelection:
65-
Text("Open Chat")
65+
Text("Send Message")
6666
case .customChat:
6767
Text("Custom Chat")
6868
case .promptToCode:
@@ -217,7 +217,7 @@ struct EditCustomCommandView: View {
217217
Text({
218218
switch commandType {
219219
case .chatWithSelection:
220-
return "Open Chat"
220+
return "Send Message"
221221
case .promptToCode:
222222
return "Prompt to Code"
223223
case .customChat:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,10 @@ This feature is recommended when you need to update a specific piece of code. So
251251
You can create custom commands that run Chat and Prompt to Code with personalized prompts. These commands are easily accessible from both the Xcode menu bar and the context menu of the circular widget. There are 3 types of custom commands:
252252

253253
- Prompt to Code: Run Prompt to Code with the selected code, and update or write the code using the given prompt, if provided. You can provide additional information through the extra system prompt field.
254-
- Open Chat: Open the chat window and immediately send a message, if provided. You can provide more information through the extra system prompt field.
254+
- Send Message: Open the chat window and immediately send a message, if provided. You can provide more information through the extra system prompt field.
255255
- Custom Chat: Open the chat window and immediately send a message, if provided. You can overwrite the entire system prompt through the system prompt field.
256256

257-
For Open Chat and Custom Chat commands, you can use the following template arguments:
257+
For Send Message and Custom Chat commands, you can use the following template arguments:
258258

259259
| Argument | Description |
260260
| ----------------------------- | ---------------------------------------------- |

0 commit comments

Comments
 (0)