summaryrefslogtreecommitdiffhomepage
path: root/packages/tui/cmd
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-07-19 18:41:21 -0400
committerDax Raad <[email protected]>2025-07-19 18:41:21 -0400
commitf06cd887734965a4acd55eae2f7cb13633f8456c (patch)
tree5c2d23a0bfd23660f864cf800c84a7c4fe05de13 /packages/tui/cmd
parent9af92b6914a630ca62b91d181fbf758beb3e9a21 (diff)
downloadopencode-f06cd887734965a4acd55eae2f7cb13633f8456c.tar.gz
opencode-f06cd887734965a4acd55eae2f7cb13633f8456c.zip
perf: more performance improvements
Diffstat (limited to 'packages/tui/cmd')
-rw-r--r--packages/tui/cmd/opencode/main.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/tui/cmd/opencode/main.go b/packages/tui/cmd/opencode/main.go
index a0b2a3768..03be0341f 100644
--- a/packages/tui/cmd/opencode/main.go
+++ b/packages/tui/cmd/opencode/main.go
@@ -91,6 +91,9 @@ func main() {
stream := httpClient.Event.ListStreaming(ctx)
for stream.Next() {
evt := stream.Current().AsUnion()
+ if _, ok := evt.(opencode.EventListResponseEventStorageWrite); ok {
+ continue
+ }
program.Send(evt)
}
if err := stream.Err(); err != nil {