From 98403aa994f8c0fbb451a2b72f34dae447004ea4 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 15 Nov 2024 17:19:11 +0200 Subject: [PATCH] Disable signature help shown by default (#20726) Closes https://github.com/zed-industries/zed/issues/20725 Stop showing the pop-up that gets an issue open every now and then. Release Notes: - Stopped showing signature help after completions by default --- assets/settings/default.json | 2 +- crates/editor/src/editor_settings.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 1d72f52a31..0413299fcb 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -157,7 +157,7 @@ "auto_signature_help": false, /// Whether to show the signature help after completion or a bracket pair inserted. /// If `auto_signature_help` is enabled, this setting will be treated as enabled also. - "show_signature_help_after_edits": true, + "show_signature_help_after_edits": false, // Whether to show wrap guides (vertical rulers) in the editor. // Setting this to true will show a guide at the 'preferred_line_length' value // if 'soft_wrap' is set to 'preferred_line_length', and will show any diff --git a/crates/editor/src/editor_settings.rs b/crates/editor/src/editor_settings.rs index f004206b17..ff743db9b6 100644 --- a/crates/editor/src/editor_settings.rs +++ b/crates/editor/src/editor_settings.rs @@ -279,7 +279,7 @@ pub struct EditorSettingsContent { /// Whether to show the signature help pop-up after completions or bracket pairs inserted. /// - /// Default: true + /// Default: false pub show_signature_help_after_edits: Option, /// Jupyter REPL settings.