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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -