From 707a4c7f20a32a659c5b7263e6f232b3caa53f46 Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Tue, 3 Jun 2025 15:50:33 +0200 Subject: [PATCH] Remove unused editor_model configuration option (#31492) It seems that this configuration option is no longer used and can be removed. Release Notes: - Removed unused `agent.editor_model` setting --- assets/settings/default.json | 7 ------- docs/src/configuring-zed.md | 4 ---- 2 files changed, 11 deletions(-) diff --git a/assets/settings/default.json b/assets/settings/default.json index 6fffbe2702..3ae4417505 100644 --- a/assets/settings/default.json +++ b/assets/settings/default.json @@ -733,13 +733,6 @@ // The model to use. "model": "claude-sonnet-4" }, - // The model to use when applying edits from the agent. - "editor_model": { - // The provider to use. - "provider": "zed.dev", - // The model to use. - "model": "claude-sonnet-4" - }, // Additional parameters for language model requests. When making a request to a model, parameters will be taken // from the last entry in this list that matches the model's provider and name. In each entry, both provider // and model are optional, so that you can specify parameters for either one. diff --git a/docs/src/configuring-zed.md b/docs/src/configuring-zed.md index 73a347286f..88e08c12e1 100644 --- a/docs/src/configuring-zed.md +++ b/docs/src/configuring-zed.md @@ -3303,10 +3303,6 @@ Run the `theme selector: toggle` action in the command palette to see a current "provider": "zed.dev", "model": "claude-sonnet-4" }, - "editor_model": { - "provider": "zed.dev", - "model": "claude-sonnet-4" - }, "single_file_review": true, } ```