SUMMARY In Rust files, when I write e.g. a new function, if statement or for loop, the curly brackets are not automatically expanded as they do in *.c files, for example. STEPS TO REPRODUCE 1. Create new *.rs file 2. Enter something like 'fn test(){}' 3. With the cursor inside the curly brackets hit return OBSERVED RESULT fn test(){ } EXPECTED RESULT fn test() { (with indentation) } SOFTWARE/OS VERSIONS KDE Plasma Version: 5.19.4 KDE Frameworks Version: 5.73.0 Qt Version: 5.15.0
Tested rust and c and can confirm that rust does not automatically indent or provide a new line where c does. Tested on git master.
Not reproducible anymore so closing this. Our indenters got a lot of fixes in the last year so probably this was also fixed