spadgos / sublime-jsdocs

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support for JSDoc 3

ritenv opened this issue · comments

Looking at the format of JSDoc 3 here: http://usejsdoc.org/about-getting-started.html

/**
 * Represents a book.
 * @constructor
 * @param {string} title - The title of the book.
 * @param {string} author - The author of the book.
 */
function Book(title, author) {
    console.log('Hello', author);
}

Is there a way, within the settings, to enable this format? Mainly, the - symbol after the param names.