Zynaga - 2008-09-01

hello, what i want to mean is, for example in php:

we type "for", then press ctrl+space, when "for" option appears selected we type enter, and the following code should apear:

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

}

or a switch:
switch ($case) {
    case 1:
   
    break;
    case 2:
   
    break;
    default:

    break;
}

preg_replace("/search/is", "replace", $string);

this is an example for php scripts.

another is for tags
<html> after we type it the</html> should appear after the tag.