mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
fix: Indent levels could bleed over on the left edge
Fixes #3087 Refs #3105 # modified: theme.toml
This commit is contained in:
parent
3b1ba7fb12
commit
906259cc41
@ -421,7 +421,11 @@ pub fn render_text_highlights<H: Iterator<Item = HighlightEvent>>(
|
||||
return;
|
||||
}
|
||||
|
||||
for i in 0..(indent_level / tab_width as u16) {
|
||||
let starting_indent = (offset.col / tab_width) as u16;
|
||||
// TODO: limit to a max indent level too. It doesn't cause visual artifacts but it would avoid some
|
||||
// extra loops if the code is deeply nested.
|
||||
|
||||
for i in starting_indent..(indent_level / tab_width as u16) {
|
||||
surface.set_string(
|
||||
viewport.x + (i * tab_width as u16) - offset.col as u16,
|
||||
viewport.y + line,
|
||||
|
Loading…
Reference in New Issue
Block a user