Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code: How to hide the bottom panel, no matter which tab I'm on?

I've found shortcuts to show/hide Problems (Cmd+Shift+M) or Output (Cmd+Shift+U), but these require two button presses to hide the bottom pane if it's not currently on those respective tabs.

How can I hide and show the bottom panel with a single button press, regardless of which tab is currently active? Similar functionality as Cmd+B, which hides the left-hand bar no matter whether Explorer, Debug etc. is active.

like image 952
Freewalker Avatar asked Oct 13 '17 16:10

Freewalker


People also ask

How do you hide a panel in VS Code?

By default in VSCode Ctrl/Cmd + J shows and hides the Panel, no matter which one you are focused on.

How do I hide the preview pane in Visual Studio Code?

Go to Preferences->Settings Under text-editor dropdown go to Minimap and there uncheck the enable of a minimap. Show activity on this post.

How do you unhide the bottom bar in VS Code?

Search for “status bar” and check/uncheck the checkbox in the “Workbench > Status Bar: Visible” section to show/hide the status bar, respectively.

How do I hide the status bar in Visual Studio Code?

Search for “status bar” and check/uncheck the checkbox in the “Workbench > Status Bar: Visible” section to show/hide the status bar, respectively. If you want to use specific settings for a particular project then create a folder named .vscode in the root directory of that project then add a settings.json file inside that folder.

Where is the VS Code Search panel?

VS Code search is now at the bottom! Obviously, you'll need to open VSCode. Show the [bottom] panel by navigating to View > Appearance > Show Panel. By default, the Panel itself loads at the bottom. If you've changed this at some point, you can move it back to the bottom by modifying the "workbench.panel.defaultLocation" setting.

What is a tab in Visual Studio Code?

Tabs #. Visual Studio Code shows open items with Tabs (tabbed headings) in the title area above the editor. When you open a file, a new Tab is added for that file. Tabs let you quickly navigate between items and you can Drag and Drop Tabs to reorder them.

Is there a change to the buttons in the panel title bar?

A small change related to the buttons in the tab bar line: and to the buttons in the panel title bar: For users who have already memorized the keyboard shortcuts for these commands (and considering the existence of Ctrl-p and Ctrl-Shift-p), the buttons are kind of redundant.


1 Answers

By default in VSCode Ctrl/Cmd+J shows and hides the Panel, no matter which one you are focused on.

KeyboardShortcuts.json

like image 77
ifconfig Avatar answered Sep 24 '22 01:09

ifconfig