aboutsummaryrefslogtreecommitdiff
path: root/vim/ftdetect/perl.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-09-05 12:00:16 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-09-05 12:00:16 +1200
commitb19b04fc4ce2403187f307bb11c559274573f7f8 (patch)
tree5e437107a9b467aee671d594c4c08a5f32e6e004 /vim/ftdetect/perl.vim
parentMerge branch 'release/v1.66.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-b19b04fc4ce2403187f307bb11c559274573f7f8.tar.gz
dotfiles-b19b04fc4ce2403187f307bb11c559274573f7f8.zip
Merge branch 'release/v1.67.0'v1.67.0
* release/v1.67.0: Bump VERSION Update vertical_region.vim plugin Scrap the nvim.vim runtime include Correct a comment in vim/plugin/dist.vim Require at least one char in ftdetect filenames
Diffstat (limited to 'vim/ftdetect/perl.vim')
-rw-r--r--vim/ftdetect/perl.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/ftdetect/perl.vim b/vim/ftdetect/perl.vim
index 95830b0b..887a9fb6 100644
--- a/vim/ftdetect/perl.vim
+++ b/vim/ftdetect/perl.vim
@@ -1,9 +1,9 @@
" If it's a new file in a bin, libexec, or scripts subdir that has a
" Makefile.PL sibling, and I'm editing it, it's almost definitely Perl.
autocmd filetypedetect BufNewFile
- \ */bin/*
- \,*/libexec/*
- \,*/scripts/*
+ \ ?*/bin/?*
+ \,?*/libexec/?*
+ \,?*/scripts/?*
\ if filereadable(expand('<afile>:p:h:h') . '/Makefile.PL')
\| setfiletype perl
\|endif