Unnamed repository; edit this file 'description' to name the repository.
matchbrackets: Needs to render with the viewport offset
Blaž Hrastnik 2021-06-04
parent bd4552c · commit f2e554d
-rw-r--r--helix-term/src/ui/editor.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-term/src/ui/editor.rs b/helix-term/src/ui/editor.rs
index e5d9f679..f474cb36 100644
--- a/helix-term/src/ui/editor.rs
+++ b/helix-term/src/ui/editor.rs
@@ -320,7 +320,10 @@ impl EditorView {
if (pos.col as u16) < viewport.width {
let style = Style::default().add_modifier(Modifier::REVERSED);
surface
- .get_mut(pos.col as u16 + OFFSET, pos.row as u16)
+ .get_mut(
+ viewport.x + pos.col as u16,
+ viewport.y + pos.row as u16,
+ )
.set_style(style);
}
}