diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs index 6fecd512b..e10e9c866 100644 --- a/helix-term/src/ui/editor.rs +++ b/helix-term/src/ui/editor.rs @@ -93,6 +93,10 @@ impl EditorView { let text_annotations = view.text_annotations(doc, Some(theme)); let mut decorations = DecorationManager::default(); + if config.zebra_stripe { + decorations.add_decoration(Self::zebra_stripe(view, theme)); + } + if is_focused && config.cursorline { decorations.add_decoration(Self::cursorline(doc, view, theme)); } @@ -788,6 +792,20 @@ impl EditorView { ); } + pub fn zebra_stripe(view: &View, theme: &Theme) -> impl Decoration { + let style = theme.get("ui.background.zebra-stripe"); + let viewport = view.area; + + move |renderer: &mut TextRenderer, pos: LinePos| { + if pos.doc_line % 2 == 1 { + return; + } + + let area = Rect::new(viewport.x, pos.visual_line, viewport.width, 1); + renderer.set_style(area, style); + } + } + /// Apply the highlighting on the lines where a cursor is active pub fn cursorline(doc: &Document, view: &View, theme: &Theme) -> impl Decoration { let text = doc.text().slice(..); diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 739dcfb49..6567acf09 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -256,6 +256,8 @@ pub struct Config { pub shell: Vec, /// Line number mode. pub line_number: LineNumber, + /// Highlight every other line. Defaults to false. + pub zebra_stripe: bool, /// Highlight the lines cursors are currently on. Defaults to false. pub cursorline: bool, /// Highlight the columns cursors are currently on. Defaults to false. @@ -956,6 +958,7 @@ impl Default for Config { vec!["sh".to_owned(), "-c".to_owned()] }, line_number: LineNumber::Absolute, + zebra_stripe: false, cursorline: false, cursorcolumn: false, gutters: GutterConfig::default(),