Do not scroll when selecting all (#2778)

In big buffers, when I press `cmd-a`, the view gets scrolled to the very
bottom.
Usually it's now that I want, I can scroll to bottom with `cmd-down`
separately, and selecting all text is used for copy-pasting it
somewhere, no need to scroll anywhere for that — I can get back to the
same place later.

Release Notes:

- Removed the scroll to the end of the editor after `editor::SelectAll`
action
This commit is contained in:
Kirill Bulatov 2023-07-22 00:25:37 +03:00 committed by GitHub
commit bd9118f673
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5298,7 +5298,7 @@ impl Editor {
pub fn select_all(&mut self, _: &SelectAll, cx: &mut ViewContext<Self>) {
let end = self.buffer.read(cx).read(cx).len();
self.change_selections(Some(Autoscroll::fit()), cx, |s| {
self.change_selections(None, cx, |s| {
s.select_ranges(vec![0..end]);
});
}