I did the following in Visual Studio Code:
This takes up too much room, but I still want to use the Minimap when I'm editing a single file in a single window. Is there a way to have the Minimap enabled for a single file, but disabled in side-by-side "Windowed" mode?
Right click anywhere on the minimap and select "Scroll Bar Options...". On the right side of the dialog window that pops up, you will see a section named "Behavior" under which you should select the "Use bar mode for vertical scroll bar" option. Press the OK button. This will remove the minimap.
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": "" }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With