aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/perl.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftdetect/perl.vim')
-rw-r--r--vim/ftdetect/perl.vim9
1 files changed, 0 insertions, 9 deletions
diff --git a/vim/ftdetect/perl.vim b/vim/ftdetect/perl.vim
deleted file mode 100644
index 571e4f58..00000000
--- a/vim/ftdetect/perl.vim
+++ /dev/null
@@ -1,9 +0,0 @@
-" Perl 5 files
-autocmd BufNewFile,BufRead
- \ *.pl,*.pm,*.t,Makefile.PL
- \ setfiletype perl
-autocmd BufNewFile,BufRead
- \ *
- \ if getline(1) =~# '\m^#!.*\<perl\>'
- \ | setfiletype perl
- \ | endif