javadoc - How to format block comments using tabs exclusively -


i'm maintaining code formatter, , have option use tabs indenting. remember users explaining me, company police prohibits spaces in beginning of line (even aligning), , checked on commit/push in vcs. i'm trying support block comments jsdoc or javadoc, , seems use 1 space aligning them.

<tab>/** <tab> * here goes comment <tab> * notice space before '*' <tab> */ 

but how align using tabs?


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -