Valloric / MatchTagAlways

A Vim plugin that always highlights the enclosing html/xml tags
http://valloric.github.com/MatchTagAlways/
GNU General Public License v3.0
541 stars 24 forks source link

does not work in .blade.php files #41

Open D1mon opened 7 years ago

D1mon commented 7 years ago

does not work in .blade.php files with "jwalton512/vim-blade" plugin

Hritik14 commented 5 years ago

Run :set ft? and check what's the filetype. For me, it was php add the ft to the list as given in the docs eg:

let g:mta_filetypes = {
    \ 'html' : 1,
    \ 'xhtml' : 1,
    \ 'xml' : 1,
    \ 'jinja' : 1,
    \ 'php' : 1,
    \}