Selecting All and then pressing tab moves all the code in the same way, but I'm looking for a way to make JBuilder apply indenting rules such as incrementing tabs after curly braces.
So when you got code that's not indented at all like
class Foo {
Object obj;
public static void main(
String[] args) {
// blub
}
}
and you select everything and press ???, the code should look like this:
class Foo {
Object obj;
public static void main(String[] args) {
// blub
}
}
Emacs does support this, involving standard and personal settings. (Ctrl-Alt-AltGr-\ on selection)
respect,
Dennis