From 0dda9851b3b125cc1f42eb73d5405c792345c12d Mon Sep 17 00:00:00 2001 From: Agus Zubiaga Date: Fri, 17 Jan 2025 18:41:45 -0300 Subject: [PATCH] zeta: Request completion when jumping to diagnostic (#23292) Release Notes: - N/A Co-authored-by: Antonio --- crates/editor/src/editor.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 1212084b067c5edc378dedcdaade2c5aa5d6cf63..fcafa9f4b1f64e82b20252aad1274708a55da88d 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -9245,6 +9245,7 @@ impl Editor { new_selection.collapse_to(primary_range_start, SelectionGoal::None); s.select_anchors(vec![new_selection.clone()]); }); + self.refresh_inline_completion(false, true, cx); } return; } @@ -9320,6 +9321,7 @@ impl Editor { goal: SelectionGoal::None, }]); }); + self.refresh_inline_completion(false, true, cx); } break; } else {