Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tab indentation under Eclipse/Aptana IDEs

How to enable tab indentation under Aptana/Eclipse IDEs? I appreciate the way that my Emacs indents lines code by pressing TAB key independently of the current cursor's position.

like image 921
settimed Avatar asked Dec 27 '22 14:12

settimed


1 Answers

I usually cut some code and then paste it into its new place, when doing this the code has the same indentation that had before.

To fix it I do the following:

Select a block of code and press <Tab> (To move the code to the right)

Select a block of code and press <Shift> + <Tab> (To move the code to the left)

like image 171
RickyCheers Avatar answered Jan 06 '23 12:01

RickyCheers