@jeremiaskleer commented on this pull request.
}
if (get_project_pref(auto_continue_multiline)) { /* " * " auto completion in multiline C/C++/D/Java comments */ - auto_multiline(editor, line); + if (auto_multiline(editor, line, FALSE) && doHandleBracket) {
The output of /** <ENTER>int main() {<ENTER> with auto-close enabled (<ENTER> == pressing enter-key on keyboard) in an c++ document is
with the change ("|" shows the cursor afterwards: ``` /** * int main() { * | * } ```
without: ``` /** * int main() { |* } ``` and in original Geany 1.37 on Windows: ``` /** * int main() { *|})
```