Reputation: 793
I'd like to use HTML5 Tags in PHP, but Vim can't recognize them. I have installed this plugin: http://www.vim.org/scripts/script.php?script_id=3236 But this plugin doesn't support PHP files. What can I do?
Upvotes: 4
Views: 590
Reputation: 303
Vim may not be detecting that there is HTML inside of your PHP file. Have you tried manually setting the filetype?
:set ft=html.php
Upvotes: 2