ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Format JSDoc @params

by finitewisdom ALL

A package to extend the functionality of the Sublime Text editor. Specifically, if the current selection represents a set of @param lines, one per line, it will reformat the lines to align the parameter types, names and descriptions.

Details

  • 1.0.1
  • bitbucket.​org
  • 7 years ago
  • 2 hours ago
  • 7 years ago

Installs

  • Total 14K
  • Win 7K
  • Mac 5K
  • Linux 2K
Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 1 0 0 1 0 0 0 0 1 1 0 0 0 0 3 0 1 1 1 0 0 0 0 0 1 1 0 0 0 0 1 3 0 0 0 1 1 3 0 0 0 1 0 1 1 2
Mac 1 1 2 2 0 1 2 0 0 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 1
Linux 0 2 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
bitbucket.​org

Overview

JSDocParam is a 3rd-party package for Sublime Text that can be used to format JSDoc @param blocks.

User Interface

A menu item named Format JSDoc @params will be added to the Edit menu. There is no key binding associated with this menu item, by default. If you would like to define one, then do the following:

  1. Select Key Bindings from the Preferences menu
  2. Add { "keys": ["ctrl+shift+2"], "command": "jsdoc_param" } to the array of user bindings
  3. Save the user bindings

In this example, we chose Shift-2 because that represents the @ character, ubiquitous throughout JSDoc documentation. Of course, you can specify any key binding that you prefer.

What It Does

If the current selection represents a set of @param lines, one per line, it will reformat the lines to align the parameter types, names and descriptions. For example, if the selection represents this (excluding the dashed lines):

----------------------------------------------------------------------------
 * @param {module:app/model/model~Model} model - The model definition
 * @param {string} mode - The mode being performed (e.g. "add", "edit")
 * @param {string} name - The name of the field (e.g. "type")
 * @param {function} callback - The Node-style callback to invoke with the result
 * @param {?module:javascript~Error} callback.err - The error object
 * @param {string} callback.s - The authorization level
----------------------------------------------------------------------------

it will reformat it into this:

----------------------------------------------------------------------------
 * @param {module:app/model/model~Model} model        - The model definition
 * @param {string}                       mode         - The mode being performed (e.g. "add", "edit")
 * @param {string}                       name         - The name of the field (e.g. "type")
 * @param {function}                     callback     - The Node-style callback to invoke with the result
 * @param {?module:javascript~Error}     callback.err - The error object
 * @param {string}                       callback.s   - The authorization level
----------------------------------------------------------------------------

The last line in the selection might represent a @returns statement instead of a @param statement. In this case, this:

------------------------------------------------------------------------
 *         @return      {string}     -       The formatted result
------------------------------------------------------------------------

would be reformatted to this:

------------------------------------------------------------------------
 * @returns {string} The formatted result
------------------------------------------------------------------------

Details

The general format of a @param line is:

* @param {xxx} [yyy] - zzz
------------------------------
123456789 123456789 123456789 
         1         2         3
         0         0         0

where:

- Positions 1, 3, 10, 16, 22, 24, 28: Can represent 0 or more whitespace characters
- "xxx" represents any characters other than a "}"
- The "[" and "]" are themselves optional
- "yyy" represents 1 or more non-whitespace characters
- "zzz" represents 0 or more characters of any kind

The general format of a @returns line is:

* @xxx { yyy } - zzz
------------------------------
123456789 123456789 123456789 
         1         2         3
         0         0         0

where:

  • “xxx” is either “return” or “returns”
  • “yyy” represents 1 or more non-whitespace characters
  • “zzz” represents 0 or more characters of any kind
  • any whitespace (positions 1, 3, 8, 10, 14, 16, 20) represents 0 or more whitespace characters
  • the “-” in position 17 may or may not be present

This line will be reformatted to:

* @returns {yyy} zzz
------------------------------
123456789 123456789 123456789 
         1         2         3
         0         0         0

where:

- column 1 represents the indentation to match the first @param
- columns 3, 12 and 18 represent a single space

Miscellaneous

Note 1

In the reformatted output, all lines will match the indentation of the first line. In other words, whatever whitespace appears before the * on the first line will appear on all lines.

Note 2

If there's nothing but whitespace after the *, we will leave the line as-is. This allows you to have blank (except for the leading *) lines between your @params, if you wish.

Note 3

If there isn't exactly one blank line between the @param lines and the @returns line, the output will be reformatted such that exactly one blank line exists.

Note 4

This package works just as well on @property statements as it does on @param statements.

Note 5

You don't need to select the first and last lines in their entirety. Any selection will be automatically expanded to the entirety of the first and last lines.

Note 6

“Format JSDoc @params” is an opinionated package. There are no configuration options at all. If you don't format your @params like we do, then this package isn't for you.