-
Notifications
You must be signed in to change notification settings - Fork 29.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide an option to hide the activity bar #14940
Conversation
Fix bug where activity bar would be visible on startup even if it was set to be hidden Fix bug where settings would not reflect activity bar visibility
Good,thank you. This is what I am expecting. |
@golf1052 thanks! I pushed some cosmetic changes on top. I noticed that the activity bar was not following the status bar model of hiding in all aspects but rather worked like the sidebar and panel. While your change there was working I adopted the status bar model because imho the status bar and activity bar (when hidden) are not so likely to come back, whereas side bar and panel are more often being toggled. |
Implements #1105
Adds the setting
workbench.activityBar.visible
that allows the user to toggle the activity bar visibility.Adds the action
workbench.action.toggleActivityBarVisibility
that allows the user to toggle the activity bar visibility with a keybinding or an extension to toggle the visibility through a command.