summaryrefslogtreecommitdiffstats
path: root/vim/ftdetect/tt2.vim
blob: 699fa5883e88b59dbc6c63e5d91b9d3f544e419e (plain) (blame)
1
2
3
4
5
6
7
8
9
au BufNewFile,BufRead *.tt
        \ if ( join(getline(1, 10)) =~ '<\chtml'
        \           && join(getline(1, 10)) !~ '<[%?]' )
        \   || getline(1) =~ '<!DOCTYPE HTML'
        \ || ( join(getline(1, 10)) =~ '<.*>' ) |
        \   setf tt2html |
        \ else |
        \   setf tt2 |
        \ endif