Skip to content Skip to sidebar Skip to footer

How Do You View A Function's Documentation With Visual Studio Code's Intellisense?

I'm writing Javascript with Visual Studio Code on a Mac. I have this function, documented in JSDoc format: /** * Adds the passed Matter Body to the simulation. * @param {Matter.

Solution 1:

In fact it never does, but this is intended:

In cause of the fact, that you don’t have a parameter defined yet, you can read the doc about the first parameter.

If you had written/defined the first parameter and a comma too, you could read the doc about the second one,...

It’s a similar behavior as with c#-methods.

Give it a try...


Post a Comment for "How Do You View A Function's Documentation With Visual Studio Code's Intellisense?"