The current autoload/netrw.vim (version 134) on ftp.vim.org has a typo in line
7569,
call Netrw#ErrorMsg(s:WARNING,"delete(".path.") failed!",71)
needs to be replaced with
call netrw#ErrorMsg(s:WARNING,"delete(".path.") failed!",71)
Otherwise you'll get an error with p.e.
vim "http://www.vim.org/scripts/script.php?script_id=1528"
That error points out a problem with filename escaping.
tmpfile is already escaped and will be escaped the second time in line 997,
drop the fnameescape and it'll work.
Karsten
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---