updated for version 7.0182
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt
index 8fd9666..6912808 100644
--- a/runtime/doc/windows.txt
+++ b/runtime/doc/windows.txt
@@ -1,4 +1,4 @@
-*windows.txt* For Vim version 7.0aa. Last change: 2005 Apr 01
+*windows.txt* For Vim version 7.0aa. Last change: 2006 Jan 19
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1100,18 +1100,18 @@
directory Displays directory contents. Can be used by a file explorer
plugin. The buffer is created with these settings: >
- :set buftype=nowrite
- :set bufhidden=delete
- :set noswapfile
+ :setlocal buftype=nowrite
+ :setlocal bufhidden=delete
+ :setlocal noswapfile
< The buffer name is the name of the directory and is adjusted
when using the |:cd| command.
scratch Contains text that can be discarded at any time. It is kept
when closing the window, it must be deleted explicitly.
Settings: >
- :set buftype=nofile
- :set bufhidden=hide
- :set noswapfile
+ :setlocal buftype=nofile
+ :setlocal bufhidden=hide
+ :setlocal noswapfile
< The buffer name can be used to identify the buffer.
*unlisted-buffer*
@@ -1119,7 +1119,7 @@
normal editing, but to show a help file, remember a file name
or marks. The ":bdelete" command will also set this option,
thus it doesn't completely delete the buffer. Settings: >
- :set nobuflisted
+ :setlocal nobuflisted
<
vim:tw=78:ts=8:ft=help:norl: