From d2639099bbdc737e2ec0894abea110f148b49568 Mon Sep 17 00:00:00 2001 From: Bennet Bo Fenner Date: Thu, 16 Apr 2026 13:48:44 +0200 Subject: [PATCH] workspace: Open new projects in the same window by default (#54057) This makes it so that `cmd-o` adds the project to the multi-workspace, rather than opening a new window Self-Review Checklist: - [x] I've reviewed my own diff for quality, security, and reliability - [x] Unsafe blocks (if any) have justifying comments - [x] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [ ] Tests cover the new/changed behavior - [x] Performance impact has been considered and is acceptable Release Notes: - N/A --- crates/workspace/src/workspace.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/workspace/src/workspace.rs b/crates/workspace/src/workspace.rs index b4d236eef11cb2f46929275ba640b88ce77fe79b..e0a497fbe4ee38552a505376a15a6b5db57ee599 100644 --- a/crates/workspace/src/workspace.rs +++ b/crates/workspace/src/workspace.rs @@ -231,7 +231,7 @@ pub struct Open { impl Open { pub const DEFAULT: Self = Self { - create_new_window: true, + create_new_window: false, }; /// Used by `#[serde(default)]` on the `create_new_window` field so that