sublime-jsdocs icon indicating copy to clipboard operation
sublime-jsdocs copied to clipboard

Not auto completing parameter names/description

Open canda opened this issue 9 years ago • 4 comments

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) {

  };

canda avatar Nov 10 '15 17:11 canda

Did you try restarting Sublime? I was having the same problem and just quit and opened it back up to find it working.

dougsmith1000 avatar Nov 17 '15 16:11 dougsmith1000

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 .

canda avatar Nov 17 '15 17:11 canda

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.

dougsmith1000 avatar Nov 17 '15 17:11 dougsmith1000

Same happenend to me, I've done what @dougsmith1000 said, after that worked perfectly !!!

matiaslauriti avatar Jan 12 '16 01:01 matiaslauriti