From c6ef35ba378cce9c3d8801ce8aede114dfd90179 Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Fri, 8 Aug 2025 17:05:28 -0400 Subject: [PATCH] Disable edit predictions in Zed settings by default (#34401) In Zed settings, json schema based LSP autocomplete is very good, edit predictions are not. Disable the latter by default. Release Notes: - N/A --- assets/settings/default.json | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 9c579b858d..28cf591ee7 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -1210,7 +1210,18 @@ // Any addition to this list will be merged with the default list. // Globs are matched relative to the worktree root, // except when starting with a slash (/) or equivalent in Windows. - "disabled_globs": ["**/.env*", "**/*.pem", "**/*.key", "**/*.cert", "**/*.crt", "**/.dev.vars", "**/secrets.yml"], + "disabled_globs": [ + "**/.env*", + "**/*.pem", + "**/*.key", + "**/*.cert", + "**/*.crt", + "**/.dev.vars", + "**/secrets.yml", + "**/.zed/settings.json", // zed project settings + "/**/zed/settings.json", // zed user settings + "/**/zed/keymap.json" + ], // When to show edit predictions previews in buffer. // This setting takes two possible values: // 1. Display predictions inline when there are no language server completions available.