On 07.04.2009, at 08:58, Scott Haneda wrote:
I have seen others do this, I can not find any docs on it.
In php, I have seen someone type in array_keys() and somehow, they are able, in that completion, or at a later time, get it to insert the template arguments: array_keys ( array $input [, mixed $search_value [, bool $strict= false]] )
type in the <?php ?> environment within an HTML doc
array
press ⌥⎋
and type further e.g. "_k"
select "array_keys" from the pull-down menu
and you get
array_keys(array input, mixed search_value, [bool strict])
--Hans