From 592642fbfcb91396b55524d677282626438d69de Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Thu, 6 Feb 2025 11:28:25 -0300 Subject: [PATCH] edit predictions: Tweak status bar menu copywriting (#24376) Just fine-tuning words on items of the status bar menu. Release Notes: - N/A --- .../src/inline_completion_button.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/inline_completion_button/src/inline_completion_button.rs b/crates/inline_completion_button/src/inline_completion_button.rs index 4471418646..c6a616dc1a 100644 --- a/crates/inline_completion_button/src/inline_completion_button.rs +++ b/crates/inline_completion_button/src/inline_completion_button.rs @@ -387,7 +387,7 @@ impl InlineCompletionButton { pub fn build_language_settings_menu(&self, mut menu: ContextMenu, cx: &mut App) -> ContextMenu { let fs = self.fs.clone(); - menu = menu.header("Show Predict Edits For"); + menu = menu.header("Show Edit Predictions For"); if let Some(language) = self.language.clone() { let fs = fs.clone(); @@ -451,9 +451,9 @@ impl InlineCompletionButton { } menu = menu.item( - ContextMenuEntry::new("Exclude Files") + ContextMenuEntry::new("Configure Excluded Files") .documentation_aside(|_| { - Label::new("This item takes you to the settings where you can specify files that will never be captured by any edit prediction model. You can list both specific file extensions and individual file names.").into_any_element() + Label::new("This item takes you to the settings where you can specify files that will never be captured by any edit prediction model. List both specific file extensions and individual file names.").into_any_element() }) .handler(move |window, cx| { if let Some(workspace) = window.root().flatten() {