Bugzilla – Bug 365454
Incorrect auto-indenting behavior if curly brace used on inner if/for/etc but not used on outer if/for/etc
Last modified: 2008-05-19 15:13:50 UTC
Using the managed edtior in SVN trunk... If I type: if (true) if (true) { I would expect that hitting Enter after the curly brace would auto-indent the next line an additional level, like this: if (true) if (true) { | // cursor is indented However, what I actually see is this: if (true) if (true) { | // cursor should be indented one more level Both of these scenarios behave correctly, though: if (true) if (true) if (true) { if (true) {
*** This bug has been marked as a duplicate of bug 325187 ***