Multiple file types in vim

Posted by Chad on Stack Overflow See other posts from Stack Overflow or by Chad
Published on 2010-04-08T15:56:04Z Indexed on 2010/04/09 1:33 UTC
Read the original article Hit count: 427

Filed under:
|
|
|

When I am working on a PHP file for example the default filetype is php. This makes sense, however when that PHP file has HTML as well the filetype is still only php. For some plugins that means that I get the PHP functionality for that plugin, but miss out on the HTML functionality. A more specific situation where this happens is with my snippet plugin. I get php snippets and not html snippets when I am editing a php file.

Possible solutions to this (which I obviously don't like, hence my posting this question) are:

  1. add a map to toggle between different filetypes when I am editing different sections of the file.
  2. update my php snippets file to include the html snippets as well (while this would work for the example above, it doesn't solve the fundamental problem).

So, Is there a way to edit a file using multiple filetypes at the same time in vim?

© Stack Overflow or respective owner

Related posts about vim

Related posts about gvim