summaryrefslogtreecommitdiff
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-14 21:57:32 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-14 21:57:32 +0200
commitabf39e880d328c076adcba2ff368f0354b2cbe64 (patch)
treeca6e68f0ec7669a32aa284c9d181de2a790a670a /runtime/ftplugin
parente00289df69c80e47e7352a62e0d1beaea2d20b46 (diff)
downloadvim-git-abf39e880d328c076adcba2ff368f0354b2cbe64.tar.gz
Runtime file updates.
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r--runtime/ftplugin/perl6.vim19
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"