The auto-indent doesn't work within C-style multi-line comments: it ignores the indentation of the previous line. For example (`|` is caret): ``` /** * Multi line comment. * Indented line| */ ``` The current indentation after pressing Enter: ``` /** * Multi line comment. * Indented line * | */ ``` The expected indentation: ``` /** * Multi line comment. * Indented line * | */ ```