You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@holtc Thx for reporting.
This is very annoying behavior.
Currently vim-jsdoc can't judge async() {} is method or function(AST can judge but Vim script can't).
I'll try to fix this but bit hard.
Just workaround solution, you can do <Shft-v> at const doSomething line and type :'<,'>JsDoc
Running
:JsDoc
on the following function does not work properly.const doSomething = async (param1, param2, param3) => {}
turns into:Instead, I believe it should say the below (like it does without the
async
):The text was updated successfully, but these errors were encountered: