aboutsummaryrefslogtreecommitdiff
path: root/helix-view
diff options
context:
space:
mode:
Diffstat (limited to 'helix-view')
-rw-r--r--helix-view/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/commands.rs b/helix-view/src/commands.rs
index 63084520..43c27cb4 100644
--- a/helix-view/src/commands.rs
+++ b/helix-view/src/commands.rs
@@ -127,7 +127,7 @@ pub fn move_file_start(view: &mut View, _count: usize) {
pub fn move_file_end(view: &mut View, _count: usize) {
// TODO: use a transaction
let text = &view.state.doc;
- let last_line = text.char_to_line(text.len_lines().checked_sub(1).unwrap());
+ let last_line = text.line_to_char(text.len_lines().checked_sub(1).unwrap());
view.state.selection = Selection::single(last_line, last_line);
view.state.mode = Mode::Normal;