Home  >  Article  >  Development Tools  >  How to adjust the vscode menu if it is missing?

How to adjust the vscode menu if it is missing?

藏色散人
藏色散人Original
2019-11-13 11:24:254633browse

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
}

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!

Statement:
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