diff options
author | Blaž Hrastnik | 2020-10-07 05:15:32 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2020-10-07 05:16:12 +0000 |
commit | 03795e56742e5a6047e63467ef2912c2306c112d (patch) | |
tree | 8b41faad58361c5d60293ee1921d7523fcfbfbe9 /helix-view/src | |
parent | 6848702b1f09dc1a4e8d2e3067d3b45b3421d403 (diff) |
Fix cursor jumping when we're positioned in top padding pressing up.
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/commands.rs | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/helix-view/src/commands.rs b/helix-view/src/commands.rs index 19853c37..18135f0f 100644 --- a/helix-view/src/commands.rs +++ b/helix-view/src/commands.rs @@ -147,11 +147,15 @@ pub fn check_cursor_in_view(view: &mut View) -> bool { } pub fn page_up(view: &mut View, _count: usize) { + if view.first_line < PADDING { + return; + } + view.first_line = view.first_line.saturating_sub(view.size.1 as usize); if !check_cursor_in_view(view) { let text = view.state.doc(); - let pos = text.line_to_char(view.last_line().saturating_sub(PADDING as usize)); + let pos = text.line_to_char(view.last_line().saturating_sub(PADDING)); view.state.selection = Selection::single(pos, pos); } } @@ -167,11 +171,15 @@ pub fn page_down(view: &mut View, _count: usize) { } pub fn half_page_up(view: &mut View, _count: usize) { + if view.first_line < PADDING { + return; + } + view.first_line = view.first_line.saturating_sub(view.size.1 as usize / 2); if !check_cursor_in_view(view) { let text = &view.state.doc; - let pos = text.line_to_char(view.last_line() - PADDING as usize); + let pos = text.line_to_char(view.last_line() - PADDING); view.state.selection = Selection::single(pos, pos); } } |