Webstorm: how to extend to handle PHP files or even just highlight code correctly?

42,220

Solution 1

UPDATE: since TextMate bundles support was added to the IDE, you can add any language syntax highlighting to the IDE if there is TextMate bundle for it. See my reply about adding Ruby highlighting, it would be the same for PHP, just the different bundle.


Your best option is to use PhpStorm. Another option is to create your custom file type for basic syntax highlighting.

Solution 2

Why not

File Menu > Settings > File Types > click 'PHP files' > click 'Add' in the bottom screen > enter '*.php'

(instead of html with .php)

Solution 3

Associate the .php file extension to HTML file cause the IDE highlight at least HTML code correctly.

File Menu > Settings > File Types > click 'HTML files' > click 'Add' in the bottom screen > enter '*.php'.

Solution 4

A late reply, but this worked for me:

use this textmate bundle: https://github.com/textmate/php.tmbundle

Then go to settings > File Types and associate *.php to PHP files.

Hope it helps.

Solution 5

I tried the textmate bundle but it seems that there is an issue. I wasn't able to get highlighting. I think it is an unsolved bug, so I wonder if someone figured out how to use it.

http://youtrack.jetbrains.com/issue/WEB-11065

http://youtrack.jetbrains.com/issue/RUBY-14273

So I think I have to use PHPStorm to get basic syntax highlighting. Thats sad :/

Share:
42,220
zsitro
Author by

zsitro

Updated on April 10, 2020

Comments

  • zsitro
    zsitro about 4 years

    I tried this IDE and I like it. Only problem is that if Im in a project that has some PHP in it, its confusing to see plain black text instead of correct PHP highlight.

    I dont need brutal PHP autocomplete or so, but a syntax highlight. Is it possible to achieve in Webstorm?

    Or the only option is to use PHPStorm?