phpdesigner phpdoc autocomplete

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
orlandinho
Forum Newbie
Posts: 18
Joined: Mon Feb 12, 2007 9:50 pm

phpdesigner phpdoc autocomplete

Post by orlandinho »

i´ve been using zend studio for the past month and found useful the php doc autocomplete
just type '/**' and Enter and the */ was generated with function or class info also commented

Code: Select all

/**
 * New Function
 *
 * @param $value
 * @return string
 */
function combo($value=""){
.....
}
now i am using phpdesigner, but i dont find the way to enable this autocomplete
maybe someone have done this
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

If memory serves, there was a section in the options/preferences panel where you could set up your own autocomplete snippets.
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

You could always use the free Eclipse, which when coupled with the PHPEclipse plugin has PHPDoc blocks on by default.
Post Reply