Explorar o código

add focus tracking for tui so cursor will hide when not in focus (#103)

Gal Schlezinger hai 8 meses
pai
achega
fe109c921e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      packages/tui/internal/components/chat/editor.go

+ 1 - 1
packages/tui/internal/components/chat/editor.go

@@ -93,7 +93,7 @@ const (
 )
 
 func (m *editorComponent) Init() tea.Cmd {
-	return tea.Batch(textarea.Blink, m.spinner.Tick)
+	return tea.Batch(textarea.Blink, m.spinner.Tick, tea.EnableReportFocus)
 }
 
 func (m *editorComponent) Update(msg tea.Msg) (tea.Model, tea.Cmd) {