updated for version 7.0227
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 9ca5d71..3171e96 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.0aa. Last change: 2006 Mar 10
+*eval.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1510,6 +1510,7 @@
byteidx( {expr}, {nr}) Number byte index of {nr}'th char in {expr}
call( {func}, {arglist} [, {dict}])
any call {func} with arguments {arglist}
+changenr() Number current change number
char2nr( {expr}) Number ASCII value of first char in {expr}
cindent( {lnum}) Number C indent for line {lnum}
col( {expr}) Number column nr of cursor or mark
@@ -1914,6 +1915,14 @@
{dict} is for functions with the "dict" attribute. It will be
used to set the local variable "self". |Dictionary-function|
+changenr() *changenr()*
+ Return the number of the most recent change. This is the same
+ number as what is displayed with |:undolist| and can be used
+ with the |:undo| command.
+ When a change was made it is the number of that change. After
+ redo it is the number of the redone change. After undo it is
+ one less than the number of the undone change.
+
char2nr({expr}) *char2nr()*
Return number value of the first char in {expr}. Examples: >
char2nr(" ") returns 32
@@ -5574,9 +5583,11 @@
:let {var-name} .. List the value of variable {var-name}. Multiple
variable names may be given. Special names recognized
here: *E738*
- g: global variables.
- b: local buffer variables.
- w: local window variables.
+ g: global variables
+ b: local buffer variables
+ w: local window variables
+ s: script-local variables
+ l: local function variables
v: Vim variables.
:let List the values of all variables. The type of the
diff --git a/runtime/doc/help.txt b/runtime/doc/help.txt
index 3192df5..e6e3bfa 100644
--- a/runtime/doc/help.txt
+++ b/runtime/doc/help.txt
@@ -1,4 +1,4 @@
-*help.txt* For Vim version 7.0aa. Last change: 2006 Feb 27
+*help.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM - main help file
k
@@ -84,7 +84,7 @@
|usr_90.txt| Installing Vim
-REFERENCE MANUAL: These files explain every detail of Vim.
+REFERENCE MANUAL: These files explain every detail of Vim. *ref-toc*
General subjects ~
|intro.txt| general introduction to Vim; notation used in help files
@@ -194,6 +194,13 @@
|pi_zip.txt| Zip archive explorer
LOCAL ADDITIONS: *local-additions*
+|cecutil.txt| DrChip's Utilities Jun 11, 2004
+|engspchk.txt| English Spelling Checker (v61) Mar 14, 2005
+|example.txt| Example for a locally added help file
+|matchit.txt| Extended "%" matching
+|test.txt| Testing the hélp cömmånd nôw
+|typecorr.txt| Plugin for correcting typing mistakes
+|helpp.txt| Dummy line to avoid an error message
------------------------------------------------------------------------------
*bars* Bars example
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 0cc9b34..822200c 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt* For Vim version 7.0aa. Last change: 2006 Mar 16
+*options.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2557,6 +2557,9 @@
environment. This is the default value for 'encoding'. It is useful
when 'encoding' is set to "utf-8" and your environment uses a
non-latin1 encoding, such as Russian.
+ When 'encoding' is "utf-8" and a file contains an illegal byte
+ sequence it won't be recognized as UTF-8. You can use the |8g8|
+ command to find the illegal byte sequence.
WRONG VALUES: WHAT'S WRONG:
latin1,utf-8 "latin1" will always be used
utf-8,ucs-bom,latin1 BOM won't be recognized in an utf-8
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 3734385..8457b13 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -1647,6 +1647,7 @@
45.4 usr_45.txt /*45.4*
45.5 usr_45.txt /*45.5*
755 spell.txt /*755*
+8g8 various.txt /*8g8*
90.1 usr_90.txt /*90.1*
90.2 usr_90.txt /*90.2*
90.3 usr_90.txt /*90.3*
@@ -4602,6 +4603,7 @@
changed-6.4 version6.txt /*changed-6.4*
changelist motion.txt /*changelist*
changelog.vim syntax.txt /*changelog.vim*
+changenr() eval.txt /*changenr()*
changetick eval.txt /*changetick*
changing change.txt /*changing*
char2nr() eval.txt /*char2nr()*
@@ -6522,6 +6524,7 @@
redo undo.txt /*redo*
redo-register undo.txt /*redo-register*
ref intro.txt /*ref*
+ref-toc help.txt /*ref-toc*
reference intro.txt /*reference*
regexp pattern.txt /*regexp*
regexp-changes-5.4 version5.txt /*regexp-changes-5.4*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 1948927..65e3c76 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt* For Vim version 7.0aa. Last change: 2006 Mar 16
+*todo.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -44,13 +44,9 @@
EMBEDDING: Make it possible to run Vim inside a window of another program.
For GTK Neil Bird has a patch to use Vim like a widget.
-Win32: Patch for Korean IME. (Yusung, 2005 March 21)
-
Support ":set syntax=cpp.doxygen"? Suggested patch by Michael Geddes (9 Aug
2004). Should also work for 'filetype'.
-Add command to search for illegal utf-8 byte sequence.
-
Add strtol() to avoid the problems with leading zero causing octal conversion.
Add a 'tool' window: behaves like a preview window but there can be several.
diff --git a/runtime/doc/usr_toc.txt b/runtime/doc/usr_toc.txt
index 554ab70..924101f 100644
--- a/runtime/doc/usr_toc.txt
+++ b/runtime/doc/usr_toc.txt
@@ -1,4 +1,4 @@
-*usr_toc.txt* For Vim version 7.0aa. Last change: 2005 Feb 22
+*usr_toc.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM USER MANUAL - by Bram Moolenaar
@@ -47,6 +47,8 @@
|usr_90.txt| Installing Vim
+More detailed information in the reference manual: |ref-toc|
+
The user manual is available as a single, ready to print HTML and PDF file
here:
http://vimdoc.sf.net
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index c16587f..30a7a0b 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt* For Vim version 7.0aa. Last change: 2006 Mar 05
+*various.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -66,7 +66,24 @@
value of 'maxcombine' doesn't matter.
Example of a character with two composing characters:
e0 b8 81 + e0 b8 b9 + e0 b9 89 ~
- {not in Vi}
+ {not in Vi} {only when compiled with the |+multi_byte|
+ feature}
+
+ *8g8*
+8g8 Find an illegal UTF-8 byte sequence at or after the
+ cursor. This works in two situations:
+ 1. when 'encoding' is any 8-bit encoding
+ 2. when 'encoding' is "utf-8" and 'fileencoding' is
+ any 8-bit encoding
+ Thus it can be used when editing a file that was
+ supposed to be UTF-8 but was read as if it is an 8-bit
+ encoding because it contains illegal bytes.
+ Does not wrap around the end of the file.
+ Note that when the cursor is on an illegal byte or the
+ cursor is halfway a multi-byte character the command
+ won't move the cursor.
+ {not in Vi} {only when compiled with the |+multi_byte|
+ feature}
*:p* *:pr* *:print*
:[range]p[rint] [flags]
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 9a36fc6..8a7f018 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 16
+*version7.txt* For Vim version 7.0aa. Last change: 2006 Mar 17
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -285,7 +285,8 @@
The |:undolist| command can be used to get an idea of which undo branches
exist. The |:undo| command now takes an argument to directly jump to a
-specific position in this list.
+specific position in this list. The |changenr()| function can be used to
+obtain the change number.
There is no graphical display of the tree with changes, navigation can be
quite confusing.
@@ -307,6 +308,8 @@
For pattern matching it is now possible to search for individual composing
characters. |patterns-composing|
+The |8g8| command searches for an illegal UTF-8 byte sequence.
+
More highlighting *new-more-highlighting*
-----------------
@@ -2006,4 +2009,8 @@
Added SOME_VALID: Redraw the whole window but also try to scroll to minimize
redrawing.
+Win32: When using Korean IME making it active didn't work properly. (Moon,
+Yu-sung, 2005 March 21)
+
+
vim:tw=78:ts=8:ft=help:norl: