spadgos / sublime-jsdocs

Simplifies writing DocBlock comments in Javascript, PHP, CoffeeScript, Actionscript, C & C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reparse comment block changes indentation

ssteinerx opened this issue · comments

When a comment block is first created with /**, indentation is like this.

/**
 *
 *
 **/

I.E. the leading asterisks are lined up.

When you reparse the comment block, the alignment changes to this:

/**
*
*
**/

I.E. the leading astericks now line up under the leading slash.

I'd like it to just leave it the way it was and drop me back into being able to tab from field to field.

Ah, this was fixed in 09fabd0 but I forgot to deploy it >_<

Comin' right up...

Thanks!

Steve