Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS Code - Is there a way you can make the Minimap bigger?

I have enabled the MiniMap in Visual Studio Code (VSCODE) with the following code: "editor.minimap.enabled": true

But can I make it bigger? It's so small at the right.

like image 338
UNTITLED.PNG Avatar asked Mar 05 '17 15:03

UNTITLED.PNG


3 Answers

thanks Alex there is a new setting from VSCode release 1.40.0 onwards:

"editor.minimap.scale": 2

before VSCode 1.40.0: there is no zoom-level for the minimap.

But i think the following settings is useful as it renders it schematically which looks much nicer than with true! Maybe this improves it! ;-)

"editor.minimap.renderCharacters": false
like image 183
Hilmar Demant Avatar answered Oct 13 '22 13:10

Hilmar Demant


In the settings, you can set the width with

// Limit the width of the minimap to render at most a certain number of columns
"editor.minimap.maxColumn": 120
like image 21
Eric Bole-Feysot Avatar answered Oct 13 '22 12:10

Eric Bole-Feysot


From vscode release 1.40.0

"editor.minimap.scale": 2,
like image 35
Alex Avatar answered Oct 13 '22 13:10

Alex