diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-14 21:57:32 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-14 21:57:32 +0200 |
commit | abf39e880d328c076adcba2ff368f0354b2cbe64 (patch) | |
tree | ca6e68f0ec7669a32aa284c9d181de2a790a670a /runtime/ftplugin | |
parent | e00289df69c80e47e7352a62e0d1beaea2d20b46 (diff) | |
download | vim-git-abf39e880d328c076adcba2ff368f0354b2cbe64.tar.gz |
Runtime file updates.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/perl6.vim | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/runtime/ftplugin/perl6.vim b/runtime/ftplugin/perl6.vim index 49d829b76..14ab1e9ca 100644 --- a/runtime/ftplugin/perl6.vim +++ b/runtime/ftplugin/perl6.vim @@ -40,25 +40,6 @@ setlocal define=[^A-Za-z_] " set isfname-=: set isfname+=: -" Set this once, globally. -if !exists("perl6path") - if executable("perl6") - if &shellxquote != '"' - let perl6path = system('perl6 -e "print join(q/,/,@*INC)"') - else - let perl6path = system("perl6 -e 'print join(q/,/,@*INC)'") - endif - let perl6path = substitute(perl6path,',.$',',,','') - else - " If we can't call perl6 to get its path, just default to using the - " current directory and the directory of the current file. - let perl6path = ".,," - endif -endif - -let &l:path=perl6path -"--------------------------------------------- - " Undo the stuff we changed. let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isk<" . \ " | unlet! b:browsefilter" |