Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to reset zoom in Eclipse?

Tags:

eclipse

In Eclipse one can use CTRL+ and CTRL- to zoom a text editor.

How can I reset the zoom level back to default(100%) ?

like image 856
binary01 Avatar asked Nov 27 '17 08:11

binary01


People also ask

How do I Unzoom my screen in Eclipse?

To increase the font size or to zoom into the source text, starting with Eclipse Neon I use the <CTRL>+<+> shortcut (press the CTRL key in combination with the '+' key). To zoom out and to decrease the font size use the '-' with <CTRL>+<->.

How do I reset zoom in and out?

Please press ... to reset it to 100%." To reset the zoom level, press Ctrl + 0 (Windows) or Command + 0 (on a Mac). NOTE: Pressing Ctrl + 0 or Command + 0 will reset the zoom level on the current page, but may not change the default zoom setting for the browser.

How do I change the size of my Eclipse?

Go to Preferences > General > Appearance > Colors and Fonts, expand the "Basic" folder and select "Text Font" and change that to whatever size you like. Show activity on this post. Restart Eclipse to apply changes.

What is the shortcut for system out Println in eclipse?

To get System. out. println() line in eclipse without typing the whole line type sysout and press Ctrl + space.


1 Answers

Text zooming is implemented in Eclipse, by changing the preference of the editor text size. There is no Zoom 100% command, but you can reset the text editor font (assuming you are using the default text editor font):

In Window > Preferences: General > Appearance > Colors and Fonts select Basic > Text Font and click Reset and Apply and Close.

like image 64
howlger Avatar answered Sep 25 '22 09:09

howlger