sublime-jsdocs
sublime-jsdocs copied to clipboard
Decorate with block comment
The decorate things is really great with inline comment. But can you make something with block comment like :
/**********************\
* Bla bla *
\**********************/
It is prettier than a lot of slash I think
True, but how would you trigger that? The ugly double comments have the advantage that they're already in a comment. Perhaps:
/**
* Blah blah|<Ctrl+Enter>
*/
/*************\
* Blah blah *
\*********** */
What about with /* Bla bla|<Ctrl+Enter> ? To follow the syntax with line comment
what about multi-line support?
Hum, yeah good point. There is no multi-line with // ?
// here are some
// single line comments
// together|<ctrl+enter>
//////////////////////////
// here are some //
// single line comments //
// together //
//////////////////////////
Hum, yeah didn't know that :). But your trigger idea is fine, maybe change /** to /* to avoid mixing up with element documentation?