Sublime Forum

Expand Snippet - Tab to next field

#1

snippet tab/shortcut: cfii

echo \$this->Form->input('${1:input}', array('label'=>'${2:label}'));

generate:

echo $this->Form->input('input', array('label'=>'label'));

When type video and press TAB, Sublime Text 2 generate this:
before:

echo $this->Form->input('video', array('label'=>'label'));

after:

echo $this->Form->input('vpopmail_del_domain(domain)', array('label'=>'label'));.

How fix that?

0 Likes