updated for version 7.0218

This commit is contained in:
Bram Moolenaar
2006-03-08 21:32:40 +00:00
parent 1f35bf9cab
commit a3227e2b15
39 changed files with 719 additions and 213 deletions

View File

@ -1,4 +1,4 @@
*options.txt* For Vim version 7.0aa. Last change: 2006 Mar 06
*options.txt* For Vim version 7.0aa. Last change: 2006 Mar 08
VIM REFERENCE MANUAL by Bram Moolenaar
@ -5020,6 +5020,9 @@ A jump table for the options with a short description can be found at |Q_op|.
global
Allows for mappings to work recursively. If you do not want this for
a single entry, use the :noremap[!] command.
NOTE: To avoid portability problems with Vim scripts, always keep
this option at the default "on". Only switch it off when working with
old Vi scripts.
*'report'*
'report' number (default 2)

View File

@ -1,4 +1,4 @@
*quickfix.txt* For Vim version 7.0aa. Last change: 2006 Mar 07
*quickfix.txt* For Vim version 7.0aa. Last change: 2006 Mar 08
VIM REFERENCE MANUAL by Bram Moolenaar
@ -478,8 +478,13 @@ advantages are:
- Uses Vim search patterns. Multi-line patterns can be used.
- When plugins are enabled: compressed and remote files can be searched.
|gzip| |netrw|
- When 'hidden' is set the files are kept loaded, thus repeating a search is
much faster. Uses a lot of memory though!
To be able to do this Vim loads each file as if it is being edited. When
there is no match in the file the assicated buffer is wiped out again. The
'hidden' option is ignored here to avoid running out of memory or file
descriptors when searching many files. However, when the |:hide| command
modifier is used the buffers are kept loaded. This makes following searches
in the same files a lot faster.
5.1 using Vim's internal grep

View File

@ -5484,6 +5484,7 @@ hebrew hebrew.txt /*hebrew*
hebrew.txt hebrew.txt /*hebrew.txt*
help various.txt /*help*
help-context help.txt /*help-context*
help-tags tags 1
help-translated various.txt /*help-translated*
help-xterm-window various.txt /*help-xterm-window*
help.txt help.txt /*help.txt*

View File

@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.0aa. Last change: 2006 Mar 07
*todo.txt* For Vim version 7.0aa. Last change: 2006 Mar 08
VIM REFERENCE MANUAL by Bram Moolenaar
@ -30,6 +30,13 @@ be worked on, but only if you sponsor Vim development. See |sponsor|.
*known-bugs*
-------------------- Known bugs and current work -----------------------
Bug in Netbeans interface. (Xavier de Gaye, 2006 Mar 7)
Code for "insert" is wrong. Don't use b_p_eol or b_start_eol.
Handle partial lines properly. What probably should happen is to append to a
line when "off" points to the NUL after that line, insert before a line when
the text doesn't end in a "\n" and only insert line breaks where there is a
"\n" in the argument.
Win32: Describe how to do debugging and describe it. (George Reilly)
Mac unicode patch (Da Woon Jung):
@ -45,8 +52,6 @@ Mac unicode patch (Da Woon Jung):
- With 'nopaste' pasting is wrong, with 'paste' Command-V doesn't work.
(Alan Schmitt)
Bug in Netbeans interface. (Xavier de Gaye, 2006 Mar 7)
CONSIDERED FOR VERSION 7.0:
Omni completion:

View File

@ -1,4 +1,4 @@
*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 07
*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 08
VIM REFERENCE MANUAL by Bram Moolenaar
@ -1873,4 +1873,7 @@ would also be the wrong value.
When a command was defined not to take arguments and no '|' no warning message
would be given for using a '|'. Also with ":loadkeymap".
Motif: When using a fontset and 'encoding' is "utf-8" and sizeof(wchar_t) !=
sizeof(XChar2b) then display was wrong. (Yukihiro Nakadaira)
vim:tw=78:ts=8:ft=help:norl: