mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Add indent guides support
This commit is contained in:
parent
6a3f7f2c39
commit
8c4c923e80
1 changed files with 32 additions and 0 deletions
|
@ -401,6 +401,23 @@ impl EditorView {
|
||||||
let text_style = theme.get("ui.text");
|
let text_style = theme.get("ui.text");
|
||||||
let whitespace_style = theme.get("ui.virtual.whitespace");
|
let whitespace_style = theme.get("ui.virtual.whitespace");
|
||||||
|
|
||||||
|
let mut is_in_indent_area = true;
|
||||||
|
let mut last_line_indent_level = 0;
|
||||||
|
let indent_style = theme
|
||||||
|
.try_get("ui.virtual.indent-guide")
|
||||||
|
.unwrap_or_else(|| theme.get("comment"));
|
||||||
|
|
||||||
|
let draw_indent_guides = |indent_level, line, surface: &mut Surface| {
|
||||||
|
for i in 0..(indent_level / tab_width as u16) {
|
||||||
|
surface.set_string(
|
||||||
|
viewport.x + (i * tab_width as u16) - offset.col as u16,
|
||||||
|
viewport.y + line,
|
||||||
|
"│",
|
||||||
|
indent_style,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
'outer: for event in highlights {
|
'outer: for event in highlights {
|
||||||
match event {
|
match event {
|
||||||
HighlightEvent::HighlightStart(span) => {
|
HighlightEvent::HighlightStart(span) => {
|
||||||
|
@ -453,8 +470,18 @@ impl EditorView {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This is an empty line; draw indent guides at previous line's
|
||||||
|
// indent level to avoid breaking the guides on blank lines.
|
||||||
|
if visual_x == 0 {
|
||||||
|
draw_indent_guides(last_line_indent_level, line, surface);
|
||||||
|
} else if is_in_indent_area {
|
||||||
|
// A line with whitespace only
|
||||||
|
draw_indent_guides(visual_x, line, surface);
|
||||||
|
}
|
||||||
|
|
||||||
visual_x = 0;
|
visual_x = 0;
|
||||||
line += 1;
|
line += 1;
|
||||||
|
is_in_indent_area = true;
|
||||||
|
|
||||||
// TODO: with proper iter this shouldn't be necessary
|
// TODO: with proper iter this shouldn't be necessary
|
||||||
if line >= viewport.height {
|
if line >= viewport.height {
|
||||||
|
@ -499,6 +526,11 @@ impl EditorView {
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if is_in_indent_area && !(grapheme == " " || grapheme == "\t") {
|
||||||
|
draw_indent_guides(visual_x, line, surface);
|
||||||
|
is_in_indent_area = false;
|
||||||
|
last_line_indent_level = visual_x;
|
||||||
|
}
|
||||||
|
|
||||||
visual_x = visual_x.saturating_add(width as u16);
|
visual_x = visual_x.saturating_add(width as u16);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue