Add options to hide title and status bar #55183
Replies: 84 comments 19 replies
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
This comment has been hidden.
|
Yeah this would be super good to have… Currently like 10-20% of the screen real estate is completely wasted for no reason whatsoever. This is the only major thing keeping me from switching over from terminal-based editors… I often need work with 10-15 files open at the same time, and with the current layout more than 4-5 files is impossible. Would also be good to toggle the breadcrumb bar. Line numbers are toggleable which is awesome! (but not nearly enough, IMO!) |
|
@rsmirnov90 you can hide the breadcrumb bar like this: {
"toolbar": {
"breadcrumbs": false,
"quick_actions": false
},
} |
|
We have Titlebar, TabBar, Toolbar, StatusBar, they occupy too much valuable vertical space, like old M$ Office. Considering the characteristics of collaboration, perhaps they can be placed in the StatusBar. |
|
Guys, it's 2024 and we don't have an option to disable the status bar? That should've been added in the first beta. |
|
options for full customizing UI are one of basic things on editors. please add soon as possible. |
|
Big bump. Onboarding zed has been a breeze - don't want to come off as pushy, its truly awesome. But when I see that top title bar I am wondering what the thought process was. Same for the status bar height. Editors keep getting these absolute basics wrong and I dont understand why. Please let users configure what happens on their screen real estate.
A permanent "sign in" button isn't giving off the right vibes - I think many people are looking for something in between vscode and sublime, and initially zed seems like a great tool in the right direction, but when it throws "sign in" "use github" "use assistant" "use chat" "collaborate with team members" "use copilot" your way when opening for the first time, I feel like we're headed right back into windows 11. |
This comment was marked as spam.
This comment was marked as spam.
|
For me, the toolbar ("title bar") is hidden when adding these settings: "toolbar": {
"breadcrumbs": false,
"quick_actions": false
}, |
Weird, I still have it with this (on macOS). |
Doesn't work for me either. |
Agreed. This would be very useful for those using tiling window managers. An extra 5 lines of code on the screen goes a long way. |
|
Hi folks, closing this in favor of a discussion - this is a feature request and not a bug/issue. |
|
I really hope this gets implemented soon |
|
+1, it rly sucks that there's no actual option to show the menu bar within the title bar permanently and that it spawns a separate bar, and that there is no way to hide the custom title bar in case i use server side decorations in linux. |
|
There's also a pixel space everywhere, so you can't click things on the edge of the screen anyway, which is why I would want tabs to be the very top line. |
|
It's not gonna happen because they added it once and then they removed it. |
|
This is actually the only missing feature that is stopping me from using zed as a daily driver |
|
|
I was genuinely surprised to see this issue closed. Just a few days ago it was still one of the most upvoted issues in the repo. I actually thought it had been closed because the feature was finally implemented — only to find out it was closed for this reason instead. Hiding the titlebar is such a simple tweak. Why refuse to implement it? Just add a toggle option, is it really that difficult? Or at least allow hiding it in fullscreen mode. |
|
are we done? |
|
the fact that they used a no-title-bar Zed version to showcase the edit prediction (see the announcement) while rejecting community contributions because of their "redesign" is hilarious.
|
|
Since I have an ultrawide monitor, I have an abundance of horizontal space but limited vertical space. That is, everything in the title bar (project, git branch, collab) could be added to the status bar and I'd still have space left over. Every user's workflow and situation is a bit different, which is why customization is such an important feature in editors like VS Code, Emacs, etc. It's bewildering that Zed maintainers are rejecting PRs to add this small feature, and it doesn't really seem to match the spirit of open source, especially considering the overwhelming community support in #5120 |
@ConradIrwin could we get it for Linux please? I use hyprland on ultrawide, evaluating switching to zed from neovim - using mostly keyboard. This empty bar with a useless 🍔 is just awful 😭 |
|
I am working on a fork for this. Currently I seem to have gotten it to work on MacOS and will soon get around to Linux. I am by no means an experienced rust developer, but I think this is quite an easy thing for AI to accomplish, with some minor tweaks. I will try to keep you posted. |
|
Yesterday Claude Code one shot the setting and toggling of that setting for title bar visibility and I have it working on a test build in Linux. Here is my fork's commit. However, I am ensuring it matches Zed's code style & quality, properly fits the current Zed design, and matches the quality of the prior pull requests, which I was not aware of earlier. Prior Pull Requests:
Related, the original issue requesting to merge the tabs into title bar: #5066 Given all of this, it seems they want the title bar redesign done before any feature for this is accepted. I would still want the ability to toggle the visibility of all docks and panels that aren't the editor, regardless of any title bar redesign. I use a window tiling manager setup and being able to selectively turn on/off different visual elements temporarily and by default is my ideal. Such a design loses no features and provides the user with ample customization to suit their needs. |







Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Description
Usually I feel some components of zed editor(title and status bar) are redundant to me, and I just want to focus on the editor itself. It's something called zen mode in vscode.
It's something similar to #5333, but I want to hide more..
Describe the solution you'd like
Here is the components I want to be able to hide:

Here is how vscode shows:

All reactions