The default comments so verbose.
How disable create the default comments?
Hi Stormer,
Iâd be surprised if there was an option to disable the creation of these comments.
I do sometimes wonder how many developers know about âselection shortcutsâ
For example, if your cursor is at the start of one of those comment lines, and you hold SHIFT + press the âEndâ key youâll select the entire line. (Which makes for easy deletion.)
Alternatively, you could press SHIFT + Home if your cursor is at the end of the line.
Hope that helps!
I am not aware of any way to disable the boilerplate new-file comments, but a handy Visual Studio âdelete lineâ keyboard shortcut can save time: âCtrl+Lâ
- Locate the comment syntax, typically using
//
for single-line comments or/* */
for multi-line comments. - Search for or identify any existing default comments in your code.
- Remove or replace these default comments with your own custom comments or delete them entirely.
- Ensure that your code remains well-documented with relevant comments as needed for clarity and maintainability.
Thank you.
In Unity, the code template is a file. I can modify the template, such as delete the default comments.
Maybe UE not working like this.