How to disable VS Code minimap in Windowed mode?

Toggle minimap command has been added since vscode 1.16. Hit command + shift + p and select View: Toggle Minimap.


There is no way to do this in VS Code. Currently there is only the "editor.minimap.enabled": false setting which can be true or false and either always enables the minimap or always disables it.

Unfortunately, as shown in this issue, there is also no "toggleMinimap" command to assign to keybindings.

You might find this extension useful, though, as it can be used to create a toggle minimap command:

settings:

"settings.cycle": [
    {
        "setting": "editor.minimap.enabled"
    }
]

keybindings.json:

{
    "key": "ctrl+shift+t",
    "command": "settings.cycle.workbench.colorTheme",
    "when": ""
}