fix: ensure view is initiated for jump_* commands (#11529)

This commit is contained in:
RoloEdits 2024-08-19 15:28:59 -07:00 committed by GitHub
parent e290479474
commit 4e729dea02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5138,6 +5138,8 @@ fn jump_forward(cx: &mut Context) {
}
doc.set_selection(view.id, selection);
// Document we switch to might not have been opened in the view before
doc.ensure_view_init(view.id);
view.ensure_cursor_in_view_center(doc, config.scrolloff);
};
}
@ -5158,6 +5160,8 @@ fn jump_backward(cx: &mut Context) {
}
doc.set_selection(view.id, selection);
// Document we switch to might not have been opened in the view before
doc.ensure_view_init(view.id);
view.ensure_cursor_in_view_center(doc, config.scrolloff);
};
}