diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-09-25 22:16:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-09-25 22:16:38 +0000 |
commit | 1e01546026ce909b5fe56c05867f28e77d1b6eb3 (patch) | |
tree | 05ccef65c430097352670acbbeb5520d649ba841 /runtime/plugin | |
parent | bfd8fc0529f46612f7b3efca6c7b3305e70ac374 (diff) | |
download | vim-git-1e01546026ce909b5fe56c05867f28e77d1b6eb3.tar.gz |
updated for version 7.0150
Diffstat (limited to 'runtime/plugin')
-rw-r--r-- | runtime/plugin/NetrwPlugin.vim | 16 | ||||
-rw-r--r-- | runtime/plugin/NetrwSettings.vim | 4 |
2 files changed, 16 insertions, 4 deletions
diff --git a/runtime/plugin/NetrwPlugin.vim b/runtime/plugin/NetrwPlugin.vim index 42bdbd9b1..8013c8fdc 100644 --- a/runtime/plugin/NetrwPlugin.vim +++ b/runtime/plugin/NetrwPlugin.vim @@ -1,7 +1,8 @@ " netrw.vim: Handles file transfer and remote directory listing across a network " PLUGIN PORTION -" Date: Sep 08, 2005 +" Last Change: Aug 29, 2005 " Maintainer: Charles E Campbell, Jr <drchipNOSPAM at campbellfamily dot biz> +" Version: 66 " License: Vim License (see vim's :help license) " GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1 @@ -20,6 +21,17 @@ " --------------------------------------------------------------------- " Load Once: {{{1 +if exists("g:loaded_netrw") || &cp + finish +endif +if v:version < 600 + echoerr "***netrw*** doesn't support Vim version ".v:version + finish +endif +let g:loaded_netrw = "v66" +if v:version < 700 + let loaded_explorer = 1 +endif let s:keepcpo= &cpo set cpo&vim @@ -126,7 +138,7 @@ endfun " example and as a fix for a Windows 95 problem: in my " experience, win95's ftp always dumped four blank lines " at the end of the transfer. -if has("win95") && exists("g:netrw_win95ftp") && g:netrw_win95ftp +if has("win95") && g:netrw_win95ftp fun! NetReadFixup(method, line1, line2) " call Dfunc("NetReadFixup(method<".a:method."> line1=".a:line1." line2=".a:line2.")") if method == 3 " ftp (no <.netrc>) diff --git a/runtime/plugin/NetrwSettings.vim b/runtime/plugin/NetrwSettings.vim index 7d8089cc4..eecdcd234 100644 --- a/runtime/plugin/NetrwSettings.vim +++ b/runtime/plugin/NetrwSettings.vim @@ -1,7 +1,7 @@ " NetrwSettings.vim: makes netrw settings simpler -" Date: Aug 16, 2005 +" Last Change: Aug 16, 2005 " Maintainer: Charles E Campbell, Jr <drchipNOSPAM at campbellfamily dot biz> -" Version: 3 +" Version: 3 " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1 " Permission is hereby granted to use and distribute this code, " with or without modifications, provided that this copyright |