Vim not indenting javascript block comments properly -


if run vim's auto indent on block of code:

/**  * description here  *  * @return {?string}  */ 

i

/** * description here * * @return {?string} */ 

instead of (desired behavior) new behavior, previous being done correctly.

i'm using vim-javascript plugin, , vimrc has

sytanx on set autoindent set smartindent 


Comments

Popular posts from this blog

javascript - How to process users in one specific order using map o each function? -

javascript - Linking from page A to a specific iframe on page B -

java - Two interface have same method name with different return type -