aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/src')
-rw-r--r--helix-term/src/editor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs
index 4386834a..a348aa6e 100644
--- a/helix-term/src/editor.rs
+++ b/helix-term/src/editor.rs
@@ -221,7 +221,7 @@ impl Editor {
let style: Style = view.theme.get("ui.linenr");
for (i, line) in (view.first_line..(last_line as u16)).enumerate() {
self.surface
- .set_stringn(0, line, format!("{:>5}", i + 1), 5, style);
+ .set_stringn(0, i as u16, format!("{:>5}", line + 1), 5, style);
// lavender
}