Dockable panels: allow console to be docked to the bottom of the AI panel #64800
WillFrasier
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Body
What are you proposing?
The ability to dock panels (like the console) to specific locations within the Zed UI, similar to VS Code and Cursor. Specifically, allow the console panel to be docked to the bottom of the AI panel, creating a persistent layout where both panels are visible and accessible.
Why does this matter?
Currently, Zed's panel layout is fixed. The console panel is always in the debugger panel, and the AI panel is separate. This forces users into inefficient workflows:
This is especially important for developers who want to:
Are there any examples or context?
Visual example:
[ Editor ]
[ AI Panel ]
[ Console ] ← Should be dockable to AI panel bottom
Possible approach
docksetting for panels in.zed/settings.json:{ "panels": { "console": { "dock": "ai_panel_bottom" // Options: "default", "ai_panel_bottom", "left", "right" } } }```All reactions