Is there a way in vscode to only zoom in on the editor

前端 未结 8 1356
[愿得一人]
[愿得一人] 2020-12-29 02:46

Currently, when you zoom in while using vscode, the editor, side panel, and icons all get magnified.

Does anyone know how to get functionality similar to Atom where

8条回答
  •  北海茫月
    2020-12-29 03:05

    Out of Box solution for zoom in/out for text only:

    1. Ctrl+Shift+P (or View->Command Palette...)
    2. Type Open User Settings
    3. Edit settings.json
    4. Add "editor.mouseWheelZoom": true
    5. Save it.

    You can use your mouse wheel to zoom in or zoom out only text in the text box.

     

提交回复
热议问题