summaryrefslogtreecommitdiff
path: root/runtime/doc/windows.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-01-19 22:16:24 +0000
committerBram Moolenaar <Bram@vim.org>2006-01-19 22:16:24 +0000
commit8ada17c4d9d783b370d081c2a947ea1350cc8338 (patch)
tree47f3570cfefb2433a4dda01a32fb11316cf9f5bc /runtime/doc/windows.txt
parent05a7bb363b6ae132b7f2550be1a588e481a5dfa3 (diff)
downloadvim-git-8ada17c4d9d783b370d081c2a947ea1350cc8338.tar.gz
updated for version 7.0182v7.0182
Diffstat (limited to 'runtime/doc/windows.txt')
-rw-r--r--runtime/doc/windows.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/runtime/doc/windows.txt b/runtime/doc/windows.txt
index 8fd966619..6912808c0 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 @@ help Contains a help file. Will only be created with the |:help|
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 @@ unlisted The buffer is not in the buffer list. It is not used for
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: