vote up 0 vote down star

Hi,

I am editing a .html.erb file with HTML(rails) selected at the bottom. When I type if I get:

< ?php if (condition): ? >

< ?php endif ? >

Any ideas?

Cheers

flag
Question incomplete? – Christoph Schiessl Sep 1 at 15:10
Seemed to be hiding the tags, added some spaces – Meeeeeeee Sep 1 at 15:13

3 Answers

vote up 0 vote down

Don't fully understand but when I type: if and hit TAB, I get PHP instead:

<?php if (condition): ?>
<?php endif ?>

You could create your own ERB snippet for example on IF, TAB:

<% if ${1:value?} %>
  ${2}
<% end %>
link|flag
The reason you guys are seeing this is because the scope selector for the "PHP if" snippet is "text.html". If there isn't a more specific selector matched first, you'll end up executing this one when you type "if[tab]". – jdl Sep 1 at 18:02
vote up 0 vote down

Suggestion: Open your Bundle Editor and delete the PHP bundle in you don't need it. This way, I won't interfere with your ERB templates again.

link|flag
vote up 0 vote down

You probably have an incorrect manual binding for .erb files. To see what manual bindings you have run

defaults read com.macromates.textmate OakLanguageFileBindings

If you want to get rid of all your manual bindings, quit TextMate and run

defaults delete com.macromates.textmate OakLanguageFileBindings

More info here http://blog.macromates.com/2007/file-type-detection-rspec-rails/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.