Automatic Indetation Control
Posted: Fri Oct 03, 2003 10:36 pm
I would like to suggest that the rules for automatic indentation be externally defined. We use a style of brace indentation that does not including dropping the trailing brace back one level.
TextPad supports only:
and I would like to have:
Another common style that is precluded is:
At the very least a separate checkbox each for whether to indent the opening '{' and the closing '}' would be nice.
TextPad supports only:
Code: Select all
public static void myFunction() {
...
}
Code: Select all
public static void myFunction() {
...
}
Code: Select all
public static void myFunction()
{
...
}