Reputation: 51
Is there a way to move the minimap in Visual Studio Code to the left side of the screen?
I have looked all throughout the documentation and cannot find an option for it.
Upvotes: 5
Views: 2324
Reputation: 636
The option to move the Minimap to the left or right side of the screen has been added. See this from the release notes:
There is a new setting, editor.minimap.side
, which can be configured to render the minimap (code outline) on the left.
"editor.minimap.side": "right",
"left"
or "right"
Upvotes: 0
Reputation: 181639
Moving the minimap to the left was added in v1.20: minimap position
"editor.minimap.side": "left"
Upvotes: 6
Reputation: 9
No, but you can flip what you are trying to achieve: Menu Bar | View > Move Side Bar Right
Upvotes: 0