From aaded7a66664d2971647ea4ca597545b920558bb Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Sun, 2 Nov 2025 21:33:35 -0500 Subject: [PATCH] chore: switch from bar cursor to blocky cursor --- internal/tui/styles/theme.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tui/styles/theme.go b/internal/tui/styles/theme.go index a81f8484e28c6942d19b6204e3733f27c7adbf8d..e8da5d04e9b8120668edf8f0197588cacf73883b 100644 --- a/internal/tui/styles/theme.go +++ b/internal/tui/styles/theme.go @@ -179,7 +179,7 @@ func (t *Theme) buildStyles() *Styles { }, Cursor: textinput.CursorStyle{ Color: t.Secondary, - Shape: tea.CursorBar, + Shape: tea.CursorBlock, Blink: true, }, }, @@ -204,7 +204,7 @@ func (t *Theme) buildStyles() *Styles { }, Cursor: textarea.CursorStyle{ Color: t.Secondary, - Shape: tea.CursorBar, + Shape: tea.CursorBlock, Blink: true, }, },