summaryrefslogtreecommitdiffhomepage
path: root/packages/tui/internal/app
diff options
context:
space:
mode:
authoradamdotdevin <[email protected]>2025-08-11 11:58:40 -0500
committeradamdotdevin <[email protected]>2025-08-11 11:58:46 -0500
commit5e777fd2a2d821003bfc7aa39bf5c5cd158b6c5b (patch)
tree0e68ca9beaba0715219e1e1c1d20479b5d708d9a /packages/tui/internal/app
parent3c71fda6481bcadcf62278478f0678002ff9029a (diff)
downloadopencode-5e777fd2a2d821003bfc7aa39bf5c5cd158b6c5b.tar.gz
opencode-5e777fd2a2d821003bfc7aa39bf5c5cd158b6c5b.zip
feat: toggle tool details visible
Diffstat (limited to 'packages/tui/internal/app')
-rw-r--r--packages/tui/internal/app/state.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/tui/internal/app/state.go b/packages/tui/internal/app/state.go
index 478022351..283cbd15e 100644
--- a/packages/tui/internal/app/state.go
+++ b/packages/tui/internal/app/state.go
@@ -32,6 +32,8 @@ type State struct {
MessagesRight bool `toml:"messages_right"`
SplitDiff bool `toml:"split_diff"`
MessageHistory []Prompt `toml:"message_history"`
+ ShowToolDetails *bool `toml:"show_tool_details"`
+ ShowThinkingBlocks *bool `toml:"show_thinking_blocks"`
}
func NewState() *State {