We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00ff7ff commit 35e8f05Copy full SHA for 35e8f05
1 file changed
lib/httpapi/claude.go
@@ -22,10 +22,6 @@ func formatPaste(message string) []st.MessagePart {
22
23
func formatClaudeCodeMessage(message string) []st.MessagePart {
24
parts := make([]st.MessagePart, 0)
25
- // janky hack: send a random character and then a backspace because otherwise
26
- // Claude Code echoes the startSeq back to the terminal.
27
- // This basically simulates a user typing and then removing the character.
28
- parts = append(parts, st.MessagePartText{Content: "x\b", Hidden: true})
29
parts = append(parts, formatPaste(message)...)
30
31
return parts
0 commit comments