diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-11-28 23:01:53 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-11-28 23:01:53 +0000 |
commit | 36c31f71ada48493d099e9510179766cee3c086c (patch) | |
tree | bd6eba8f2f88fbf94cbaf05f9d965d646da2338a /runtime/autoload/netrw.vim | |
parent | 9835862c81a196afd0d5e23974f8e600aa661ffd (diff) | |
download | vim-36c31f71ada48493d099e9510179766cee3c086c.zip |
updated for version 7.0161
Diffstat (limited to 'runtime/autoload/netrw.vim')
-rw-r--r-- | runtime/autoload/netrw.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim index 4f74fbb8a..b7f0c9120 100644 --- a/runtime/autoload/netrw.vim +++ b/runtime/autoload/netrw.vim @@ -1,7 +1,7 @@ " netrw.vim: Handles file transfer and remote directory listing across a network " AUTOLOAD PORTION -" Date: Nov 18, 2005 -" Version: 75 +" Date: Nov 28, 2005 +" Version: 76 " Maintainer: Charles E Campbell, Jr <drchipNOSPAM at campbellfamily dot biz> " GetLatestVimScripts: 1075 1 :AutoInstall: netrw.vim " Copyright: Copyright (C) 1999-2005 Charles E. Campbell, Jr. {{{1 @@ -23,7 +23,7 @@ if &cp || exists("g:loaded_netrw") finish endif -let g:loaded_netrw = "v75" +let g:loaded_netrw = "v76" if v:version < 700 echohl WarningMsg | echo "***netrw*** you need vim version 7.0 or later for version ".g:loaded_netrw." of netrw" | echohl None finish @@ -301,7 +301,7 @@ fun! netrw#NetRead(...) let tmpfile= tempname() let tmpfile= substitute(tmpfile,'\','/','ge') if !isdirectory(substitute(tmpfile,'[^/]\+$','','e')) - echohl Error | echo "***netrw*** your <".substitute(tmpfile,'[^/]\+$','','e')."> directory is missing!" + echohl Error | echo "***netrw*** your <".substitute(tmpfile,'[^/]\+$','','e')."> directory is missing!" | echohl None call inputsave()|call input("Press <cr> to continue")|call inputrestore() " call Dret("NetRead") return |