aboutsummaryrefslogtreecommitdiff
path: root/autoload
diff options
context:
space:
mode:
Diffstat (limited to 'autoload')
-rw-r--r--autoload/sonictemplate/lang/perl.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/autoload/sonictemplate/lang/perl.vim b/autoload/sonictemplate/lang/perl.vim
new file mode 100644
index 0000000..be5628f
--- /dev/null
+++ b/autoload/sonictemplate/lang/perl.vim
@@ -0,0 +1,6 @@
+function! sonictemplate#lang#perl#guess()
+ if expand('%:t') == 'Makefile.PL'
+ return 'make'
+ endif
+ return ''
+endfunction