Skip to content

Commit 2c4c750

Browse files
committed
fix(format): gofumpt alignment in chatModel struct
1 parent 013177a commit 2c4c750

1 file changed

Lines changed: 23 additions & 23 deletions

File tree

cmd/chat_model.go

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -166,29 +166,29 @@ type chatModel struct {
166166
spinnerVerb string
167167
// Per-turn token counters shown next to the spinner (↑ input, ↓ output).
168168
// Reset each time the user submits a message; updated by usageUpdateMsg.
169-
turnInputTokens int
170-
turnOutputTokens int
171-
lastCtrlC time.Time
172-
history []string
173-
historyIdx int
174-
historyDraft string // unsent text before navigating history
175-
autoScroll bool // whether to auto-scroll viewport to bottom
176-
vim *VimState
177-
contextViz *ContextVisualization
178-
wal *session.WAL
179-
startedAt time.Time
180-
toolStartTime time.Time
181-
welcomeCache string
182-
openConfigOnStart bool // first-run: open /config when TUI starts
183-
viewDirty bool
184-
layoutKey int // input lines + slash menu height fingerprint
185-
slashSugInput string // memoize slashSuggestions per keystroke
186-
slashSugCache []string
187-
connStatusKey string // gateway+model+creds fingerprint
188-
connStatusVal string
189-
partialDirty bool // stream text changed since last viewport paint
190-
lastPartialRender time.Time
191-
activeSkills map[string]plugin.SmartSkill // per-session activated skills
169+
turnInputTokens int
170+
turnOutputTokens int
171+
lastCtrlC time.Time
172+
history []string
173+
historyIdx int
174+
historyDraft string // unsent text before navigating history
175+
autoScroll bool // whether to auto-scroll viewport to bottom
176+
vim *VimState
177+
contextViz *ContextVisualization
178+
wal *session.WAL
179+
startedAt time.Time
180+
toolStartTime time.Time
181+
welcomeCache string
182+
openConfigOnStart bool // first-run: open /config when TUI starts
183+
viewDirty bool
184+
layoutKey int // input lines + slash menu height fingerprint
185+
slashSugInput string // memoize slashSuggestions per keystroke
186+
slashSugCache []string
187+
connStatusKey string // gateway+model+creds fingerprint
188+
connStatusVal string
189+
partialDirty bool // stream text changed since last viewport paint
190+
lastPartialRender time.Time
191+
activeSkills map[string]plugin.SmartSkill // per-session activated skills
192192

193193
// Container mode (hermetic execution in sandbox)
194194
containerEnabled bool

0 commit comments

Comments
 (0)