up vote 0 down vote favorite
share [g+] share [fb]

I've been using Textmate for Ruby/Python scripting for awhile and now have a need to hack on some PHP. I'm having some troubles with the bundle:

  1. The code-highlighting doesn't support HTML...
  2. When I type php + tab TM spits out:

    ?><?php>
    

    instead of:

    <?php ?>
    

Anyone know where I could possibly be going wrong? Thanks in advance...

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

Change your file type to HTML (even if you are editing a .php file!) would solve the problem.

link|improve this answer
Thanks, man. How could it be so simple? – vinny May 25 '09 at 22:35
I think the reason for that is you only need one <?php at the beginning of a PHP file; thus, typing php + tab means you want to insert some HTML in between. – Anh May 25 '09 at 22:54
feedback

No, the best way is to set language to "HTML" in the bottom status bar.

status bar, change to "HTML"

you can still have the file name ended with php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown