Home > Net >  How to reset VS Code's window zoom setting?
How to reset VS Code's window zoom setting?

Time:10-28

While changing VS Code's "windows zoom" setting, I accidentally changed the zoom setting to 10, so now it is zoomed so much that I can't change it to default.

enter image description here

CodePudding user response:

You can do Ctrl - to dezoom.

CodePudding user response:

Use (Ctrl -) to zoom out. Its simple you can google it as well

https://code.visualstudio.com/docs/editor/accessibility

CodePudding user response:

click the reset zoom setting under View>Appearance>Reset Zoom.Otherwise you can use the hotkey which is (CTRL -).

CodePudding user response:

Go to this path C:\Users<your admin name>\AppData\Roaming\Code\User

then open the settings file with any text editor in the end of file change the window.zoomLevel to 0

after changing : "window.zoomLevel": 0

  • Related