Bram Moolenaar | 9de9997 | 2010-08-09 22:33:06 +0200 | [diff] [blame] | 1 | " 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 Moolenaar | f354981 | 2010-08-13 12:09:22 +0200 | [diff] [blame^] | 5 | " Last Change: 2010-08-10 |
Bram Moolenaar | 9de9997 | 2010-08-09 22:33:06 +0200 | [diff] [blame] | 6 | " 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 | |
| 10 | if exists("b:did_ftplugin") | finish | endif |
| 11 | let b:did_ftplugin = 1 |
| 12 | |
| 13 | " Make sure the continuation lines below do not cause problems in |
| 14 | " compatibility mode. |
| 15 | let s:save_cpo = &cpo |
| 16 | set cpo-=C |
| 17 | |
| 18 | setlocal formatoptions+=crq |
| 19 | setlocal comments=:# |
| 20 | setlocal commentstring=#%s |
| 21 | |
| 22 | " Change the browse dialog on Win32 to show mainly Perl-related files |
| 23 | if 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" |
| 28 | endif |
| 29 | |
| 30 | " Provided by Ned Konz <ned at bike-nomad dot com> |
| 31 | "--------------------------------------------- |
| 32 | setlocal include=\\<\\(use\\\|require\\)\\> |
| 33 | setlocal includeexpr=substitute(substitute(v:fname,'::','/','g'),'$','.pm','') |
| 34 | setlocal define=[^A-Za-z_] |
Bram Moolenaar | 9de9997 | 2010-08-09 22:33:06 +0200 | [diff] [blame] | 35 | |
| 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-=: |
| 41 | set isfname+=: |
| 42 | |
| 43 | " Set this once, globally. |
| 44 | if !exists("perl6path") |
| 45 | if executable("perl6") |
| 46 | if &shellxquote != '"' |
| 47 | let perl6path = system('perl6 -e "print join(q/,/,@*INC)"') |
| 48 | else |
| 49 | let perl6path = system("perl6 -e 'print join(q/,/,@*INC)'") |
| 50 | endif |
| 51 | let perl6path = substitute(perl6path,',.$',',,','') |
| 52 | else |
| 53 | " If we can't call perl6 to get its path, just default to using the |
| 54 | " current directory and the directory of the current file. |
| 55 | let perl6path = ".,," |
| 56 | endif |
| 57 | endif |
| 58 | |
| 59 | let &l:path=perl6path |
| 60 | "--------------------------------------------- |
| 61 | |
| 62 | " Undo the stuff we changed. |
| 63 | let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isk<" . |
| 64 | \ " | unlet! b:browsefilter" |
| 65 | |
| 66 | " Restore the saved compatibility options. |
| 67 | let &cpo = s:save_cpo |