aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-09 14:16:06 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-09 14:16:06 +1200
commit84c5cd6551c5f4df4974896670c83ef7f73dd374 (patch)
treee37671c0d85d8597de0292912f037b308a29f01a /vim/ftdetect
parentAdjust comment on scripts.vim load (diff)
downloaddotfiles-84c5cd6551c5f4df4974896670c83ef7f73dd374.tar.gz
dotfiles-84c5cd6551c5f4df4974896670c83ef7f73dd374.zip
Add extra Perl file detection rules
Diffstat (limited to 'vim/ftdetect')
-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