linuscl
linuscl

Reputation: 793

Vim cannot recognise HTML5 tags in PHP

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

Answers (2)

Jay
Jay

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

Related Questions