Reputation: 328
Is there a way to have Intellij zoom (aka adjust the font size) on all tabs at the same time? Can't seem to find the option anywhere.
Upvotes: 13
Views: 5563
Reputation: 441
This is finally implemented since Intellij IDEA 2021.3.
You have to chose new radio button next to mouse wheel setting. Link to detailed answer in similar question: (https://stackoverflow.com/a/73037353/841050).
Announcement: https://www.jetbrains.com/idea/whatsnew/2021-3/
Upvotes: 2
Reputation: 12694
You cannot zoom in/out for all files/documents without changing the the default font size in the settings.
To change the default font size (for all opened files) open Settings dialog (⌘ CMD+, on MacOS or Ctrl+Alt+S on Windows OS).
Then go to Settings → Editor → Color Scheme → Color Scheme Font and change font size there:
This will set the default font size in intelliJ IDEA.
Note: If the value field is inactive, you need to create a new Schema first by clicking Save As... button.
You can also enable scrolling zoom (only the current file will be affected). Go to Settings → Editor → General and activate the checkbox Change font size (Zoom) with Ctrl + Mouse Wheel right under the Mouse section:
Now you can change the font size with Ctrl+Mouse Wheel. However this approach will change font size for each tab individually.
Upvotes: 14