1 " Vim support file to switch on loading indent files for file types
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2008 Feb 22
6 if exists("did_indent_on")
11 augroup filetypeindent
12 au FileType * call s:LoadIndent()
14 if exists("b:undo_indent")
16 unlet! b:undo_indent b:did_indent
18 let s = expand("<amatch>")
20 if exists("b:did_indent")
24 " When there is a dot it is used to separate filetype names. Thus for
25 " "aaa.bbb" load "indent/aaa.vim" and then "indent/bbb.vim".
26 for name in split(s, '\.')
27 exe 'runtime! indent/' . name . '.vim'