Fix cursor jumping when we're positioned in top padding pressing up.
This commit is contained in:
parent
6848702b1f
commit
03795e5674
1 changed files with 10 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue