sublime-jsdocs
sublime-jsdocs copied to clipboard
Not auto completing parameter names/description
I created a function, then added the comment block, but parameter names nor description appears
what I got
/**
* @param {[type]}
* @param {[type]}
* @param {[type]}
* @return {[type]}
*/
var foo = function (param1, param2, param3) {
};
what I expected
/**
* [foo description]
* @param {[type]} param1 [description]
* @param {[type]} param2 [description]
* @param {[type]} param3 [description]
* @return {[type]}
*/
var foo = function (param1, param2, param3) {
};
Did you try restarting Sublime? I was having the same problem and just quit and opened it back up to find it working.
Yes. No it is working. Thks. Do I allways need to restart after installing the plugin?
El mar, 17 de noviembre de 2015 13:00, dougsmith1000 < [email protected]> escribió:
Did you try restarting Sublime? I was having the same problem and just quit and opened it back up to find it working.
— Reply to this email directly or view it on GitHub https://github.com/spadgos/sublime-jsdocs/issues/400#issuecomment-157413498 .
I'm not sure. Some plugins work fine for me right away. Some require a restart. If I run into any problems with new plugins, restarting is the first thing I try. Glad it's working for you now.
Same happenend to me, I've done what @dougsmith1000 said, after that worked perfectly !!!