HTD / NST

New Source Tree Komodo Addon
32 stars 20 forks source link

Request: Parsing "label" for PHP #38

Closed andrewspy closed 2 years ago

andrewspy commented 10 years ago

It would be good to be able to parse based on "label" keyword in PHP to ease navigation. Conside the sample below:

/***
 * ColorCode
 */
color_label: $code['ColorCode'] = array(
    'R' => '255,0,0',
    'G' => '0,255,0',
    'B' => '0,0,255',
);

/***
 * PriceCode
 */
price_label: $code['PriceCode'] = array(
    '0'   => 'FOC',
    '50'  => '$0.50',
    '100' => '$1.00',
);

Or is there a way to remark a section inside comment for easy navigation?