vscode-docthis
vscode-docthis copied to clipboard
JSDoc generator extension for Visual Studio Code.
Currently, the extension doesn't support arrow functions and arrow function methods. VSCode has a basic support for it. For arrow functions, handling just like normal functions works fine. For arrow...
When generating a JSDoc for an ES5 class, this is generated by default: ```javascript /** * * @class Bar */ class Bar {} ``` The problem is, in JSDoc 3,...
I'm the author of the [Spin2 VSCode Extension](https://marketplace.visualstudio.com/items?itemName=IronSheepProductionsLLC.spin2). I also hook ctrl+alt-D. My extension is active for .spin and .spin2 files. When both of our extensions are installed this one...
Vue2 and Vue3 support plz! Like: ``` //Vue2 methods: { /** * something here! */ func(paramA, paramB){ //something here return ; } } ``` This is an awesome plugin, to...
When trying to generate documentation for a private member, it just documents the class: ``` class Foo { #bar (a, b){ // ... } } ``` Expected: ``` class Foo...
Your extensions always activates and slows down vscode startup regardless of if it is used, you should add contextual activationevents to only activate when necessary. Thanks! https://code.visualstudio.com/api/references/activation-events
It is just like Vue, maybe it would be beneficial to add it?
Works great in .js and .ts files, but in .vue files the extension fails with `Sorry! 'Document This' wasn't able to produce documentation at the current position.` For example, this...