fix: format files

Raphael Amorim created

Change summary

cmd/root.go                                   | 2 +-
internal/tui/components/chat/editor/editor.go | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)

Detailed changes

cmd/root.go 🔗

@@ -120,7 +120,7 @@ to assist developers in writing, debugging, and understanding code directly from
 			tea.WithAltScreen(),
 			tea.WithKeyReleases(),
 			tea.WithUniformKeyLayout(),
-			tea.WithMouseCellMotion(), // Use cell motion instead of all motion to reduce event flooding
+			tea.WithMouseCellMotion(),            // Use cell motion instead of all motion to reduce event flooding
 			tea.WithFilter(tui.MouseEventFilter), // Filter mouse events based on focus state
 		)
 

internal/tui/components/chat/editor/editor.go 🔗

@@ -49,7 +49,7 @@ type editorCmp struct {
 	currentQuery          string
 	completionsStartIndex int
 	isCompletionsOpen     bool
-	
+
 	// Debouncing for completions
 	debounceTimer *time.Timer
 }
@@ -153,10 +153,10 @@ func (m *editorCmp) debouncedCompletionFilter() tea.Cmd {
 	if m.debounceTimer != nil {
 		m.debounceTimer.Stop()
 	}
-	
+
 	// Create new timer for debouncing
 	m.debounceTimer = time.NewTimer(150 * time.Millisecond)
-	
+
 	return func() tea.Msg {
 		<-m.debounceTimer.C
 		return CompletionDebounceMsg{}
@@ -290,7 +290,7 @@ func (m *editorCmp) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
 			}
 		}
 	}
-	
+
 	m.textarea, cmd = m.textarea.Update(msg)
 	cmds = append(cmds, cmd)
 	return m, tea.Batch(cmds...)