Tool/software:
I'm new to the new version of CCS (Version 20.0.2 (20.0.2.333)). In the older version of CCS (v5 or v8 I don't remember exactly) when I start my multi-line comment with /* and hit the return key to start a new line, the IDE will automatically insert the * on the next line, with an indenting space before the * and a couple spaces after the * to align the text to the previous lines:
/**********
* line 1
* line 2
* line 3 ...
**********/
I'm missing that feature in CCS v20. After hitting the return key on a /* comment line, the new line turns out like this:
/**********
* line 1
line 2
line 3 ...
**********/
These lines are still treated as comment, and it doesn't affect the compilation of the code. I just have to edit and maintain a good number of old files all having their comments done in that way, and I'm asked to keep the same practice for any new comment. It's annoying to insert the extra * and align the text with spaces for each new line. Can I configure CCS v20 to insert the extra * and aligning spaces?