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

Currently, when you zoom in using vscode, the editor, sidebar and icons are getting bigger.

Does anyone know how to get Atom-like functionality where only the editor gets bigger?

+15
source share
3 answers

You need the FontSize Shortcuts extension .

enter image description here

Installation:

  1. Ctrl + P
  2. ext install fontsize-shortcuts
  3. Restart the Visual Studio Code.

Keyboard shortcuts:

  • Ctrl+ =to increase the font size.
  • Ctrl+ -to reduce font size.
  • Ctrl+ 0to reset the font size.
+8
source

/ :

  1. Ctrl + Shift + P ( View-> ...)
  2. settings.json
  3. "editor.mouseWheelZoom": true
  4. .

.

+36

Starting with version 1.24, new commands appeared for increasing / decreasing text only in editors. By default, they are not assigned any keyboard shortcuts:

enter image description here

https://code.visualstudio.com/updates/v1_24#_font-zoom-commands

+12
source

Source: https://habr.com/ru/post/1666205/


All Articles