Home > Development Tools > VSCode > body text

The menu bar and toolbar of vscode do not display

王林
Release: 2019-12-31 09:33:07
Original
9431 people have browsed it

The menu bar and toolbar of vscode do not display

Display the menu bar:

Press the key combination Ctrl Shift P, and then a command box will appear, enter view: toggle menu bar, and then press Enter.

The menu bar and toolbar of vscode do not display

Display the toolbar:

Find the configuration file: settings.json and set "workbench.activityBar.visible": true to true

{
    "workbench.colorTheme": "Visual Studio Light",
    "workbench.activityBar.visible": true
    "editor.renderWhitespace": "all",
    "editor.renderControlCharacters": true,
    "breadcrumbs.enabled": true,
    "window.menuBarVisibility": "default",
    "workbench.settings.openDefaultSettings": true,
    "window.enableMenuBarMnemonics": false,
    "window.zoomLevel": 0
}
Copy after login

Recommended related article tutorials: vscode tutorial

The above is the detailed content of The menu bar and toolbar of vscode do not display. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template