Add suggest_dev_container setting to disable dev container suggestions - #7
Merged
Merged
Conversation
Adds a new setting `remote.suggest_dev_container` (default: true) that controls whether a notification is shown suggesting to open the project in a dev container when a .devcontainer directory is detected. When set to false, the notification is suppressed. This is useful for platforms like Helix that run Zed inside their own managed containers. Changes: - Added suggest_dev_container field to RemoteSettingsContent schema - Added check in suggest_on_worktree_updated() to respect the setting - Added suggest_dev_container to RemoteSettings struct - Added default value in default.json Spec-Ref: helix-specs@de1a8873b:001318_in-zed-do-not-offer-to
lukemarsden
added a commit
that referenced
this pull request
Mar 23, 2026
… merge Add 8 previously undocumented upstream file modifications: - workspace.rs: Agent follow doesn't steal keyboard focus - migrate.rs: Migration banner hidden in Helix builds - grep_tool.rs: 500-char line truncation - context_server_registry.rs: MCP tools-ready tracking - connection.rs: new wait_for_tools_ready() on AgentConnection trait - config_options.rs: current_model_value() method - active_thread.rs: current_model_id() three-way fallback - thread_view.rs: unregister_thread() on entity replacement Add 4 new Critical Fixes (#5–#7): - Critical Fix #5: flush stale pending entries when new entry starts - Critical Fix #6: AcpThread::Stopped invariant (every turn must emit) - Critical Fix #7: THREAD_REGISTRY unregistration on entity replacement Update Rebase Checklist from 21 to 30 items. Update E2E test description: 4 phases → 7 phases, add slow-mcp-server. Update SyncEvent protocol: entry_type/tool_name/tool_status, mcp_servers/active_model. Add all 21 commits since last upstream merge to Commit History table. Release Notes: - N/A Spec-Ref: helix-specs@e99b6545f:001554_merge-latest-zed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new setting
remote.suggest_dev_container(default: true) that controls whether a notification is shown suggesting to open the project in a dev container when a .devcontainer directory is detected.When set to false, the notification is suppressed. This is useful for platforms like Helix that run Zed inside their own managed containers.
Changes:
Spec-Ref: helix-specs@de1a8873b:001318_in-zed-do-not-offer-to