aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-03 15:19:19 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-03 15:19:38 +1200
commitc92b0b0bdab2bf4a284d1631c3f8d33cc4979aa0 (patch)
tree196417258ef98d508e99388de5389a03c86d2a19 /vim/ftdetect
parentRevamp vint script with blacklist not whitelist (diff)
downloaddotfiles-c92b0b0bdab2bf4a284d1631c3f8d33cc4979aa0.tar.gz
dotfiles-c92b0b0bdab2bf4a284d1631c3f8d33cc4979aa0.zip
Remove accidentally committed ";" file
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