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, 9 insertions, 0 deletions
diff --git a/vim/ftdetect/perl.vim b/vim/ftdetect/perl.vim
new file mode 100644
index 00000000..8b2e1b4e
--- /dev/null
+++ b/vim/ftdetect/perl.vim
@@ -0,0 +1,9 @@
+" If it's a new file in a bin, libexec, or scripts subdir that has a
+" Makefile.PL, it's almost definitely Perl.
+autocmd BufNewFile
+ \ */bin/*
+ \,*/libexec/*
+ \,*/scripts/*
+ \ if filereadable(expand('<afile>:p:h:h') . '/Makefile.PL')
+ \| setfiletype perl
+ \|endif