droppedBytes is how many middle bytes the ring discarded; 0 while the whole output still fits head+tail.
()
| 265 | } |
| 266 | } |
| 267 | |
| 268 | // InlineStatus is the one-liner the TUI prints per tool call. |
| 269 | func InlineStatus(call chmctx.ToolCall) string { |
| 270 | switch call.Name { |
| 271 | case BashName: |
| 272 | cmd, _ := call.Arguments["cmd"].(string) |
| 273 | return "▶ bash: " + firstLine(cmd) |
| 274 | case WriteFileName: |
| 275 | path, _ := call.Arguments["path"].(string) |