I just noticed that autocmd.txt references $VIMRUNTIME/plugin/netrw.vim
which doesn't exist. This is with the latest Vim 7.3 from the mercurial
repository (I upgraded to check this, the upgrade from 7.2 -> 7.3 went
flawless BTW thanks to http://www.vim.org/mercurial.php). I guess the
filename should be netrwPlugin.vim instead? Attached is a patch that
fixes this.
- Peter Odding
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
diff -r e95106e347f6 runtime/doc/autocmd.txt
--- a/runtime/doc/autocmd.txt Wed Jul 21 22:27:37 2010 +0200
+++ b/runtime/doc/autocmd.txt Thu Jul 22 02:31:46 2010 +0200
@@ -1280,7 +1280,7 @@
that reads/writes the file. The |v:cmdbang| variable is one when "!" was
used, zero otherwise.
-See the $VIMRUNTIME/plugin/netrw.vim for examples.
+See the $VIMRUNTIME/plugin/netrwPlugin.vim for examples.
==============================================================================
11. Disabling autocommands *autocmd-disable*