Is there a keyboard command to insert ASDoc comment in ActionScript?
Before:
|
public var width:Number;
After:
/**
* |
* */
public var width:Number;
The pipe character representing the cursor location.
I found the answer partly.
Command + SHIFT + D will insert:
/**
*
*/
This is not formatted the way I was hoping and it inserts whitespace at the end. So I do not mark this solved but merely a step closer.