diff options
Diffstat (limited to 'helix-term/src/editor.rs')
-rw-r--r-- | helix-term/src/editor.rs | 2 |
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 } |