[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.tools.pdt] PHPDoc autocompletion

Hi,

can one change the behaviour of PHPDoc autocompletion?

The old 1.x behaviour suited much more my and the needs of some colleagues. What I exactly mean is that it's autocompleted like this:

/**
* Insert desc...
* @param $myVar
* @return unknown_type
*/
public function myFunc($myVar){}

which was in 1.x:

/**
* Insert desc...
* @param unknown_type $myVar
*/
public function myFunc($myVar){}

It was much more comfortable that "unknown_type" was placed before the var and @return only was injected if there was a return-statement present.

Further on sometimes (when overwriting methods or implementing abstract ones, don't know exactly) there is a @see with and in brackets (no-PHP-Doc) and no other autocompletion.

Thanks,
flo