summaryrefslogtreecommitdiffstats
path: root/vim/ftdetect/tt2.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftdetect/tt2.vim')
-rw-r--r--vim/ftdetect/tt2.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/ftdetect/tt2.vim b/vim/ftdetect/tt2.vim
deleted file mode 100644
index 699fa58..0000000
--- a/vim/ftdetect/tt2.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-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