aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term')
-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 09d66c5a..0028521e 100644
--- a/helix-term/src/editor.rs
+++ b/helix-term/src/editor.rs
@@ -91,7 +91,7 @@ impl Editor {
let range = {
// calculate viewport byte ranges
- let start = view.state.doc().line_to_byte(view.first_line.into());
+ let start = view.state.doc().line_to_byte(view.first_line);
let end = view.state.doc().line_to_byte(last_line)
+ view.state.doc().line(last_line).len_bytes();