Sublime Forum

Show DocBlock

#1

Was wondering when you make a doc block say in php, how do you get it to show up when your typing like a hint type thing? Hope that makes sense

EDITED to explain better…

/**
 * [foo description]
 * @param  string $bar="" [description]
 * @return [type]
 */
function foo($bar=""){
	$bar = "";
	return $bar;
}

-- Then when I type foo() it would show that doc info in like a hint box

foo();
0 Likes