vscode菜单不见了怎么调?
vscode菜单栏、工具栏不见了
● 按alt可以出来菜单栏;
● 命令行切换出来 关键字 menu
● F1 or shift+ctrl+p 切换出命令行,然后输入menu 有个view:toggle Menu bar 的功能,没文档这个确实要自个找。
● 找回设置栏,找到配置文件:settings.json,把
"workbench.activityBar.visible": true 设置为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 }
推荐教程:vscode教程
以上是vscode菜单不见了怎么调的详细内容。更多信息请关注PHP中文网其他相关文章!