From b3b1c88d27a634ea8423f02b71658adbdea9bdad Mon Sep 17 00:00:00 2001 From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com> Date: Tue, 25 Mar 2025 21:34:06 +0000 Subject: [PATCH] refactor: pass the `Style` instead of `Theme` --- helix-term/src/ui/editor.rs | 5 +++-- helix-term/src/ui/text_decorations/blame.rs | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 16f7d0635..32a2a8a0f 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -254,6 +254,7 @@ impl EditorView { decorations: &mut DecorationManager, theme: &Theme, ) { + const INLINE_BLAME_SCOPE: &str = "ui.virtual.inline-blame"; match inline_blame.behaviour { InlineBlameBehaviour::Hidden => (), InlineBlameBehaviour::CursorLine => { @@ -265,7 +266,7 @@ impl EditorView { doc.line_blame(cursor_line_idx as u32, &inline_blame.format) { decorations.add_decoration(InlineBlame::new( - theme, + theme.get(INLINE_BLAME_SCOPE), text_decorations::blame::LineBlame::OneLine(( cursor_line_idx, line_blame, @@ -306,7 +307,7 @@ impl EditorView { } decorations.add_decoration(InlineBlame::new( - theme, + theme.get(INLINE_BLAME_SCOPE), text_decorations::blame::LineBlame::ManyLines(blame_lines), )); } diff --git a/helix-term/src/ui/text_decorations/blame.rs b/helix-term/src/ui/text_decorations/blame.rs index ada2b261f..372666597 100644 --- a/helix-term/src/ui/text_decorations/blame.rs +++ b/helix-term/src/ui/text_decorations/blame.rs @@ -1,7 +1,6 @@ use helix_core::Position; use helix_view::theme::Style; -use helix_view::Theme; use crate::ui::document::{LinePos, TextRenderer}; use crate::ui::text_decorations::Decoration; @@ -20,9 +19,9 @@ pub struct InlineBlame { } impl InlineBlame { - pub fn new(theme: &Theme, lines: LineBlame) -> Self { + pub fn new(style: Style, lines: LineBlame) -> Self { InlineBlame { - style: theme.get("ui.virtual.inline-blame"), + style, lines, } }