question:

as you know, in PHP, if i have some code like 

    for ($i = 0; $i < 10; $i++) {

        echo $i;

    }

and i press "Ctrl-A" (for block commenting). everything will turn to

//     for ($i = 0; $i < 10; $i++) {
//
//         echo $i;
//
//     }

is there a way to change this so it inserts a blank line at the top and bottom
of the selected block and then put the other commenting style, so that in the
end it looks like

/*
    for ($i = 0; $i < 10; $i++) {

        echo $i;

    }
*/

thanks

-- 
<http://forum.pspad.com/read.php?6,42668,42801>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem