Fix GoToDefinition changing the viewport unnecessarily (#18441)

Closes #10738.

Release Notes:

- Fixed `GoToDefinition` changing the viewport (scrolling up/down) even when the definition is already within the viewport. ([#10738](https://github.com/zed-industries/zed/issues/10738))
This commit is contained in:
Ömer Sinan Ağacan 2024-09-27 16:55:03 +02:00 committed by GitHub
parent 03c7f08581
commit dc5ffe6994
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -9697,7 +9697,7 @@ impl Editor {
if Some(&target.buffer) == editor.buffer.read(cx).as_singleton().as_ref() {
let buffer = target.buffer.read(cx);
let range = check_multiline_range(buffer, range);
editor.change_selections(Some(Autoscroll::focused()), cx, |s| {
editor.change_selections(Some(Autoscroll::fit()), cx, |s| {
s.select_ranges([range]);
});
} else {