Eclipse – Change Eclipse Tab to Indent Line Like Emacs

eclipse

In Emacs when I hit tab anywhere on a line, the line will indent correctly (or at least to the mode settings). When I hit tab again it will move back to the next block. When programming Python this really helps since closing a block is done by lowering the indention level.

Is there a way to configure Eclipse to do the same?

Currently, I have to erase the leading white space then hit tab.

This question is a reposting of a superuser question.

Best Answer

Try ctrl-i (Cmd-i on osx) to indent the current line or a selection inside eclipse (if you're using default key binds as opposed to emacs). Or, if you want a different key bind, go to Appearances > General > Keys and change the bind for Correct Indentation to key(s) of your choice

Related Question