1
0
Fork 0
mirror of synced 2024-06-03 07:51:09 -04:00
ultimate-vim/sources_non_forked/vim-bundle-mako/ftdetect/mako.vim

15 lines
750 B
VimL
Raw Normal View History

2017-09-02 06:43:18 -04:00
if !exists("g:mako_detect_lang_from_ext")
let g:mako_detect_lang_from_ext = 1
endif
2022-05-19 10:47:51 -04:00
if !exists("g:mako_extension")
let g:mako_extension = ".mako"
endif
2017-09-02 06:43:18 -04:00
if g:mako_detect_lang_from_ext
2022-05-19 10:47:51 -04:00
exe 'au BufNewFile *.*' . g:mako_extension . ' execute "do BufNewFile filetypedetect " . expand("<afile>:r") | let b:mako_outer_lang = &filetype'
2017-09-02 06:43:18 -04:00
" it's important to get this before any of the normal BufRead autocmds execute
" for this file, otherwise a mako tag at the start of the file can cause the
" filetype to be set to mason
2022-05-19 10:47:51 -04:00
exe 'au BufReadPre *.*' . g:mako_extension . ' execute "do BufRead filetypedetect " . expand("<afile>:r") | let b:mako_outer_lang = &filetype'
2017-09-02 06:43:18 -04:00
endif
2022-05-19 10:47:51 -04:00
exe 'au BufRead,BufNewFile *' . g:mako_extension . ' set filetype=mako'