How to modify font zoom rate?

I know Zoom In/Out command change zoom level by 20%.

In my display, the font size often too small or big. I hope to ajust more precisely.

1

1 Answer

In Visual Studio Code, the zoom level increases or decreases by 20% each time that Zoom is executed. I assume that 20% is too much and you would like to use finer zoom increments.

The setting that contains the increment is calledcustomWindowZoom.zoomLevelChangeValue.

For an easier user-interface for changing this setting, see the extensionCustom Window Zoom:

This Visual Studio Code extension allows you to set the zoom level increment/decrement level. By default VSCode increments/decrements by '1' which equates to ~20%.

With this extension you can set the user settings, "customWindowZoom.zoomLevelChangeValue": (value), to any decimal and the increment/decrement action will increase by whatever you set it to.

For Example, set zoom level to .1, if you zoom in it will be .2 and if you zoom out it would be .1 again.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like