pangloss / vim-javascript

Vastly improved Javascript indentation and syntax support in Vim.
http://www.vim.org/scripts/script.php?script_id=4452
3.79k stars 357 forks source link

JsDoc multiline objects #1210

Closed omeid closed 1 year ago

omeid commented 4 years ago

Give this jsdoc,

/**
*
*   @param {{
*       atr: type
*   }} a
*/

The object describing the param a is not properly highlighted, even in a single line, the last closing brace is not highlighted properly.

/**
*
*   @param {{ atr: type }} a
*/