Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maximize code tab in eclipse shortcut

Tags:

editor

eclipse

Is there any shortcut for maximizing the tab you are working on in Eclipse? Assume I am working on part of a code and I want to maximize the tab not using the double click on it with the mouse, does anyone know a way?

like image 293
sheidaei Avatar asked Sep 13 '12 17:09

sheidaei


People also ask

How do I indent a whole code in Eclipse?

Ctrl + I (indentation).

What does F7 do in Eclipse?

F7 steps out to the caller of the currently executed method. This finishes the execution of the current method and returns to the caller of this method. F8 tells the Eclipse debugger to resume the execution of the program code until is reaches the next breakpoint or watchpoint.


1 Answers

CtrlM will maximize/restore the editor area.

If you can't remember all shortcuts, then just learn CtrlShiftL. That will show a list of available shortcuts.

Some more shortcuts can be found on external sites.

like image 70
Bananeweizen Avatar answered Oct 07 '22 02:10

Bananeweizen