blob: 77238ed0014a2ec862fe7de7d2f8e9f96db0276f [file] [log] [blame]
Bram Moolenaar9de99972010-08-09 22:33:06 +02001" Vim filetype plugin file
2" Language: Perl 6
3" Maintainer: Andy Lester <andy@petdance.com>
4" URL: http://github.com/petdance/vim-perl/tree/master
Bram Moolenaar84f72352012-03-11 15:57:40 +01005" Last Change: 2012 Mar 11
Bram Moolenaar9de99972010-08-09 22:33:06 +02006" Contributors: Hinrik Örn Sigurðsson <hinrik.sig@gmail.com>
7"
8" Based on ftplugin/perl.vim by Dan Sharp <dwsharp at hotmail dot com>
9
10if exists("b:did_ftplugin") | finish | endif
11let b:did_ftplugin = 1
12
13" Make sure the continuation lines below do not cause problems in
14" compatibility mode.
15let s:save_cpo = &cpo
16set cpo-=C
17
18setlocal formatoptions+=crq
19setlocal comments=:#
20setlocal commentstring=#%s
21
22" Change the browse dialog on Win32 to show mainly Perl-related files
23if has("gui_win32")
24 let b:browsefilter = "Perl Source Files (*.pl)\t*.pl\n" .
25 \ "Perl Modules (*.pm)\t*.pm\n" .
26 \ "Perl Documentation Files (*.pod)\t*.pod\n" .
27 \ "All Files (*.*)\t*.*\n"
28endif
29
30" Provided by Ned Konz <ned at bike-nomad dot com>
31"---------------------------------------------
32setlocal include=\\<\\(use\\\|require\\)\\>
33setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm','')
34setlocal define=[^A-Za-z_]
Bram Moolenaar9de99972010-08-09 22:33:06 +020035
36" The following line changes a global variable but is necessary to make
37" gf and similar commands work. Thanks to Andrew Pimlott for pointing out
38" the problem. If this causes a " problem for you, add an
39" after/ftplugin/perl6.vim file that contains
40" set isfname-=:
41set isfname+=:
42
Bram Moolenaar9de99972010-08-09 22:33:06 +020043" Undo the stuff we changed.
44let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isk<" .
45 \ " | unlet! b:browsefilter"
46
47" Restore the saved compatibility options.
48let &cpo = s:save_cpo
Bram Moolenaar84f72352012-03-11 15:57:40 +010049unlet s:save_cpo