From 7d7ec655e7130b2a214a7fd9a1220052354f8970 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Soares?= <37777652+Dnreikronos@users.noreply.github.com> Date: Tue, 21 Apr 2026 00:11:46 -0300 Subject: [PATCH] terminal_view: Show hollow cursor when bar/underline is unfocused (#53713) Self-Review Checklist:** - [x] I've reviewed my own diff for quality, security, and reliability - [ ] Unsafe blocks (if any) have justifying comments - [ ] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [ ] Tests cover the new/changed behavior - [X] Performance impact has been considered and is acceptable ## What When terminal cursor shape is set via escape sequences (e.g. `\e[6 q` for bar, `\e[4 q` for underline), the cursor looks identical whether the terminal is focused or unfocused. Block cursors already convert to a hollow outline when unfocused, but bar and underline were missing this treatment. ## How Added unfocused guards for `Beam` and `Underline` in the cursor shape match in `terminal_element.rs`, converting them to `Hollow` when the terminal loses focus. This follows the same pattern already used for `Block`. ## Why this approach A hollow block outline is the clearest unfocused signal and stays consistent with the existing Block behavior. Alternative approaches like dimming opacity or drawing outlined versions of bar/underline were considered, but a 2px-wide outlined bar would be nearly invisible at normal font sizes. ## Demo: Before: https://github.com/user-attachments/assets/81d49899-0837-42fe-a68f-4eb745892af6 After: https://github.com/user-attachments/assets/a4444e28-5835-4c9f-872f-e9ce8c4805a0 Closes #52716 Release Notes: - Fixed terminal bar and underline cursors set via escape sequences not visually distinguishing between focused and unfocused states --- crates/terminal_view/src/terminal_element.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/terminal_view/src/terminal_element.rs b/crates/terminal_view/src/terminal_element.rs index d1c6b324498ce50f67ed124ebb133f300bd40c39..1e07e1c49d43ac23145a883988c2b5c3d7fe472b 100644 --- a/crates/terminal_view/src/terminal_element.rs +++ b/crates/terminal_view/src/terminal_element.rs @@ -1162,7 +1162,9 @@ impl Element for TerminalElement { let (shape, text) = match cursor.shape { AlacCursorShape::Block if !focused => (CursorShape::Hollow, None), AlacCursorShape::Block => (CursorShape::Block, Some(cursor_text)), + AlacCursorShape::Underline if !focused => (CursorShape::Hollow, None), AlacCursorShape::Underline => (CursorShape::Underline, None), + AlacCursorShape::Beam if !focused => (CursorShape::Hollow, None), AlacCursorShape::Beam => (CursorShape::Bar, None), AlacCursorShape::HollowBlock => (CursorShape::Hollow, None), AlacCursorShape::Hidden => unreachable!(),