I use Aptana Studio 3.0.8 under Windows XP and a french (usb) keyboard.

I meet two difficulties using this tools :

-> The keyboard's shortcurt to comment many lines (Ctrl + /) have no effects :

I select some code, then I press Ctrl + / key

(two possibilities : Ctrl key + (shift + / key) OR Ctrl + / key (on the numeric pad)).

Nothing is done. If I search the options through the

right click -> commands -> source -> comments -> ... it works.

I think it's an interface problem ?

-> I wan't to generate the phpdoc for one existing function.

I go just top over the function declaration ("function myFunction($myparam, $myparam2)") and then I right /** and press the enter key.

The IDE write then

/**
 * 
 */

But doesn't generate the PHPDoc with the @param .

I suppose it's a configuration problem, but i'm unable to found the place to configure that.

Anyone could help me please ?

Regards, Anael

link|improve this question
2  
Stackoverflow is for programming questions. Suggesting to move this question to another community. – pduersteler Feb 2 at 9:58
Not really a PHP issue – MrJ Feb 2 at 10:06
Aptana redirect to StackOverflow for the Support. See aptana.com/support . Sorry for the convienence. – Anael Feb 2 at 10:25
Auto-adding params is not yet supported in Aptana Studio 3.x. Will probably be in the future. – sgibly Feb 2 at 22:51
feedback

closed as off topic by spraff, Gaurav, KingCrunch, M42, Laurent Etiemble Feb 2 at 12:14

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

If you want to write long comments, why not do the following (unless I totally do not see what you are meaning), besides, no need for keyboard shortcuts either!

/*
This
is
a
long
comment
*/

This does seem to be more of a software issue than PHP...

link|improve this answer
Hi, Yes it's a software configuration related question. I just want to comment already written code, and aptana appears to purpose this features. – Anael Feb 2 at 10:23
But why not just use either /* comment */ for multi-line comments or // comment for single line comments, keys are there on the keyboard and work ;-) – MrJ Feb 2 at 10:41
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.