From c534fdefdcbde42c99db4b23e70d69405e93aaf0 Mon Sep 17 00:00:00 2001 From: wojciechkepka Date: Mon, 21 Jun 2021 18:01:35 +0200 Subject: [PATCH] Refactor, add `ui.cursor.primary` --- book/src/themes.md | 1 + helix-term/src/ui/editor.rs | 39 +++++++++++++++++++------------------ 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/book/src/themes.md b/book/src/themes.md index 01fda34a6..2ece24912 100644 --- a/book/src/themes.md +++ b/book/src/themes.md @@ -79,6 +79,7 @@ Possible keys: | `ui.cursor.insert` | | | `ui.cursor.select` | | | `ui.cursor.match` | Matching bracket etc. | +| `ui.cursor.primary` | Cursor with primary selection | | `ui.linenr` | | | `ui.statusline` | | | `ui.statusline.inactive` | | diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 06f7e644c..dd7965803 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -281,22 +281,23 @@ impl EditorView { let end = text.line_to_char(last_line + 1); Range::new(start, end) }; - let scope = match doc.mode() { - Mode::Insert => "ui.cursor.insert", - Mode::Select => "ui.cursor.select", - Mode::Normal => "ui.cursor", - }; - let cursor_style = theme.try_get(scope).unwrap_or_else(|| { - theme - //if cursor.insert or cursor.select was not present try to default to cursor - .try_get("ui.cursor") - .unwrap_or_else(|| Style::default().add_modifier(Modifier::REVERSED)) - }); + + let base_cursor_style = theme + .try_get("ui.cursor") + .unwrap_or_else(|| Style::default().add_modifier(Modifier::REVERSED)); + let cursor_style = match doc.mode() { + Mode::Insert => theme.try_get("ui.cursor.insert"), + Mode::Select => theme.try_get("ui.cursor.select"), + Mode::Normal => Some(base_cursor_style), + } + .unwrap_or(base_cursor_style); + let primary_cursor_style = theme.try_get("ui.cursor.primary").unwrap_or(cursor_style); let selection_style = theme.get("ui.selection"); - let primary_style = theme + let primary_selection_style = theme .try_get("ui.selection.primary") .unwrap_or(selection_style); + let selection = doc.selection(view.id); let primary_idx = selection.primary_index(); @@ -309,10 +310,10 @@ impl EditorView { let mut start = view.screen_coords_at_pos(doc, text, selection.anchor); let mut end = view.screen_coords_at_pos(doc, text, selection.head); - let style = if i != primary_idx { - selection_style + let (cursor_style, selection_style) = if i == primary_idx { + (primary_cursor_style, primary_selection_style) } else { - primary_style + (cursor_style, selection_style) }; let head = end; @@ -342,7 +343,7 @@ impl EditorView { ), 1, ), - style, + selection_style, ); } else { surface.set_style( @@ -353,7 +354,7 @@ impl EditorView { viewport.width.saturating_sub(start.col as u16), 1, ), - style, + selection_style, ); for i in start.row + 1..end.row { surface.set_style( @@ -364,7 +365,7 @@ impl EditorView { viewport.width, 1, ), - style, + selection_style, ); } surface.set_style( @@ -374,7 +375,7 @@ impl EditorView { (end.col as u16).min(viewport.width), 1, ), - style, + selection_style, ); }