This commit is contained in:
Noah Baldwin 2025-04-01 09:15:15 +02:00 committed by GitHub
commit 6e32492ea1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 21 additions and 0 deletions

View file

@ -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));
}
@ -789,6 +793,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(..);

View file

@ -257,6 +257,8 @@ pub struct Config {
pub shell: Vec<String>,
/// 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.
@ -969,6 +971,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(),