Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 714 Bytes

mht.rst

File metadata and controls

22 lines (15 loc) · 714 Bytes

ftdetect/mht.vim

Treat :wikipedia:`MHTML` documents as |HTML|:

" vint: -ProhibitAutocmdWithNoGroup
autocmd BufRead,BufNewFile *.mht setfiletype FALLBACK html
autocmd BufRead,BufNewFile *.mhtml setfiletype html
" vint: +ProhibitAutocmdWithNoGroup

Note

This overrides detection for *.mhtml files as |vim| will select the mason filetype(which I’ve never seen in the wild).

Note

This is hardly a good interface for editing .mht{,ml} files given that their contents are :abbr:`MIME (Multipurpose Internet Mail Extension)` encoded, but for my use case of a quick edit it works fine.