Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » PHP Development Tools (PDT) » (no subject)
(no subject) [message #725692] Thu, 15 September 2011 14:09
dominik is currently offline dominikFriend
Messages: 122
Registered: July 2009
Senior Member
Hello

Is there a way to glue comments with following word? I would like to have such code:

{{{
/**
* OfferCategoryTable
*
* This class has been auto-generated by the Doctrine ORM Framework
*/
class OfferCategoryTable extends Doctrine_Table {

/**
* Returns an instance of this class.
*
* @return object OfferCategoryTable
*/
public static function getInstance() {
return Doctrine_Core::getTable('OfferCategory');
}
}
}}}

Right now I can set line space before class property and functions, and that
work but it divides comments:

{{{
/**
* OfferCategoryTable
*
* This class has been auto-generated by the Doctrine ORM Framework
*/

class OfferCategoryTable extends Doctrine_Table {
/**
* Returns an instance of this class.
*
* @return object OfferCategoryTable
*/

public static function getInstance() {
return Doctrine_Core::getTable('OfferCategory');
}
}
}}}

Can I set this somehow?
Except this formatter works great! :)

/dmc
Previous Topic:How could we shield selection using right-click
Next Topic:tooltip error
Goto Forum:
  


Current Time: Thu Apr 25 20:39:17 GMT 2024

Powered by FUDForum. Page generated in 0.02869 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top