简体   繁体   中英

Disable Shortcut Menu Bar in VScode

I'm trying to disable the "Shortcut Menu Bar". Through View->Appearance I can disable the side bar, status bar, activity bar, editor area, panel and from View I can disable the breadcrumbs. I don't see an option for it. I call it "Shortcut Menu bar" as this is the only way I've seen it been mentioned ( https://marketplace.visualstudio.com/items?itemName=jerrygoyal.shortcut-menu-bar )

See the bar next to Landing.tsx: 请参阅 Landing.tsx 旁边的栏

Thanks!

  1. Open the vscode settings json.

Press Ctrl+Shift+P on Windows ( Cmd+Shift+P on OSX ) and type "settings.json" OR File -> Preferences -> Settings -> Extensions -> Scroll down to find "Edit in settings.json"

  1. Add the following setting
    "gitlens.menus": {
        "editorGroup": {
            "blame": false,
            "compare": false
        }
    }
  1. Reload vscode. Either manually or press Ctrl+Shift+P on Windows ( Cmd+Shift+P on OSX ) and type "reload window"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM