aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/;
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftdetect/;')
-rw-r--r--vim/ftdetect/;12
1 files changed, 0 insertions, 12 deletions
diff --git a/vim/ftdetect/; b/vim/ftdetect/;
deleted file mode 100644
index f57ba0e6..00000000
--- a/vim/ftdetect/;
+++ /dev/null
@@ -1,12 +0,0 @@
-" PHP files
-autocmd BufNewFile,BufRead
- \ *.php
- \ setfiletype php
-autocmd BufNewFile,BufRead
- \ *
- \ if getline(1) =~# '\m^#!.\<php\>'
- \ | setfiletype php
- \ | endif
- \ | if getline(1) =~? '\m^<?php\>'
- \ | setfiletype php
- \ | endif