Home > Development Tools > VSCode > body text

How to adjust the vscode menu if it is missing?

藏色散人
Release: 2019-11-13 11:24:25
Original
4627 people have browsed it

How to adjust the vscode menu if it is missing?

How to adjust the vscode menu if it is missing?

vscode menu bar and toolbar are missing

● Press alt to bring up the menu bar;

● Command line switches to key words menu

● F1 or shift ctrl p to switch out of the command line, and then enter menu. There is a function of view:toggle Menu bar. If there is no documentation, you must find it yourself.

● Retrieve the settings bar, 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 tutorial:vscode tutorial

The above is the detailed content of How to adjust the vscode menu if it is missing?. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!