updated for version 7.0196
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 021c7fa..5364f60 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 Feb 03
+*eval.txt*      For Vim version 7.0aa.  Last change: 2006 Feb 10
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -3210,6 +3210,8 @@
 		    $	    the last line in the current buffer
 		    'x	    position of mark x (if the mark is not set, 0 is
 			    returned)
+		    w0	    first line visible in current window
+		    w$	    last line visible in current window
 		Note that only marks in the current file can be used.
 		Examples: >
 			line(".")		line number of the cursor
diff --git a/runtime/doc/help.txt b/runtime/doc/help.txt
index c2d4afe..999a507 100644
--- a/runtime/doc/help.txt
+++ b/runtime/doc/help.txt
@@ -191,13 +191,6 @@
 |pi_expl.txt|	File 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/if_cscop.txt b/runtime/doc/if_cscop.txt
index 32bc84f..183ca30 100644
--- a/runtime/doc/if_cscop.txt
+++ b/runtime/doc/if_cscop.txt
@@ -208,6 +208,11 @@
 
 	    USAGE   :cs show
 
+							*:lcscope* *:lcs*
+This command is same as the ":cscope" command, except when the
+'cscopequickfix' option is set, the location list for the current window is
+used instead of the quickfix list to show the cscope results.
+
 							*:cstag* *E257* *E562*
 If you use cscope as well as ctags, |:cstag| allows you to search one or
 the other before making a jump.  For example, you can choose to first
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index d1e0104..74c2c58 100644
--- a/runtime/doc/insert.txt
+++ b/runtime/doc/insert.txt
@@ -1,4 +1,4 @@
-*insert.txt*    For Vim version 7.0aa.  Last change: 2006 Feb 07
+*insert.txt*    For Vim version 7.0aa.  Last change: 2006 Feb 10
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1072,16 +1072,24 @@
 - There are at least two matches.
 
 While the menu is displayed these keys have a special meaning:
-<CR> and <Enter> Accept the currently selected match
-<Up>		  Select the previous match, as if CTRL-P was used
-<Down>		  Select the next match, as if CTRL-N was used
+<CR> and <Enter>  Accept the currently selected match
+
 <PageUp>	  Select a match several entries back
 <PageDown>	  Select a match several entries further
+
 <BS> and CTRL-H   Delete one character, find the matches for the shorter word
 		  before the cursor.  This may find more matches.
 CTRL-L		  Add one character from the current match, may reduce the
 		  number of matches.  Does not work after selecting one of the
 		  matches with CTRL-N, <Up>, etc.
+<Up>		  Select the previous match, as if CTRL-P was used, but don't
+		  insert it when editing the selection.
+<Down>		  Select the next match, as if CTRL-N was used, but don't
+		  insert it when editing the selection.
+
+The selection is being edited after typing <BS>, CTRL-L or when using the
+longest common match.  This stops when a match is inserted, as with CTRL-N or
+CTRL-P.
 
 The colors of the menu can be changed with these highlight groups:
 Pmenu		normal item  |hl-Pmenu|
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 2592850..4cf0d33 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 Feb 02
+*options.txt*	For Vim version 7.0aa.  Last change: 2006 Feb 10
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -1621,13 +1621,16 @@
 'completeopt' 'cot'	string	(default: "menu")
 			global
 			{not in Vi}
-	Options for Insert mode completion |ins-completion|.
-	Currently the only supported value is:
+	A comma separated list of options for Insert mode completion
+	|ins-completion|.  The supported values are:
 
 	   menu	    Use a popup menu to show the possible completions.  The
 		    menu is only shown when there is more than one match and
 		    sufficient colors are available.  |ins-completion-menu|
 
+	   longest  Only insert the longest common text of the matches.  Use
+	            CTRL-L to add more characters.
+
 
 				*'confirm'* *'cf'* *'noconfirm'* *'nocf'*
 'confirm' 'cf'		boolean (default off)
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 54cd9dd..d2ab20b 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -2124,6 +2124,8 @@
 :lchdir	editing.txt	/*:lchdir*
 :lcl	quickfix.txt	/*:lcl*
 :lclose	quickfix.txt	/*:lclose*
+:lcs	if_cscop.txt	/*:lcs*
+:lcscope	if_cscop.txt	/*:lcscope*
 :le	change.txt	/*:le*
 :left	change.txt	/*:left*
 :lefta	windows.txt	/*:lefta*
@@ -3114,7 +3116,10 @@
 Cscope	if_cscop.txt	/*Cscope*
 CursorHold	autocmd.txt	/*CursorHold*
 CursorHold-example	windows.txt	/*CursorHold-example*
+CursorHoldI	autocmd.txt	/*CursorHoldI*
 CursorIM	mbyte.txt	/*CursorIM*
+CursorMoved	autocmd.txt	/*CursorMoved*
+CursorMovedI	autocmd.txt	/*CursorMovedI*
 D	change.txt	/*D*
 DOS	os_dos.txt	/*DOS*
 DOS-format	editing.txt	/*DOS-format*
@@ -5422,6 +5427,7 @@
 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*
@@ -5850,6 +5856,14 @@
 maple.vim	syntax.txt	/*maple.vim*
 mapleader	map.txt	/*mapleader*
 maplocalleader	map.txt	/*maplocalleader*
+mapmode-c	map.txt	/*mapmode-c*
+mapmode-i	map.txt	/*mapmode-i*
+mapmode-ic	map.txt	/*mapmode-ic*
+mapmode-l	map.txt	/*mapmode-l*
+mapmode-n	map.txt	/*mapmode-n*
+mapmode-nvo	map.txt	/*mapmode-nvo*
+mapmode-o	map.txt	/*mapmode-o*
+mapmode-v	map.txt	/*mapmode-v*
 mapping	map.txt	/*mapping*
 mark	motion.txt	/*mark*
 mark-motions	motion.txt	/*mark-motions*