Autocomplete through java doc in sublime

3

I do not know if I can express myself correctly, but come on. In Java, when we discussed the code, we used the default

/**
* @author Nome do Autor; 
* @method Nome do Método;
*/

From this, in an IDE as the sublime, we can enjoy the auto complete feature from this information. Does anyone know how to configure or which plugin to install for this feature to be used in sublime text?

    
asked by anonymous 03.07.2014 / 01:24

1 answer

1

There is a plugin called DocBlock with support for PHPDoc.

It automatically adds comment that starts with /** and has * at the beginning of each line. Any line within a documentation block that does not start with a * will be ignored.

/** 
 * @author Nome do Autor
 * @method Nome do Método;
 */
function foo ()
{
}
    
03.07.2014 / 01:42