summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-02-10 23:20:28 +0000
committerBram Moolenaar <Bram@vim.org>2006-02-10 23:20:28 +0000
commitc7453f52d4eb5a5259b6b587d62b7e99e1ebdd10 (patch)
tree10caf29de7ebbddd79a710f77999875923f4ec8a /runtime
parent110bc6bc91ccb10b20103a6d4a1c17e07fda1fb5 (diff)
updated for version 7.0196
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt4
-rw-r--r--runtime/doc/help.txt7
-rw-r--r--runtime/doc/if_cscop.txt5
-rw-r--r--runtime/doc/insert.txt16
-rw-r--r--runtime/doc/options.txt9
-rw-r--r--runtime/doc/tags14
6 files changed, 40 insertions, 15 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 021c7fa3f2..5364f60b1a 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 @@ line({expr}) The result is a Number, which is the line number of the file
$ 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 c2d4afee0e..999a50772d 100644
--- a/runtime/doc/help.txt
+++ b/runtime/doc/help.txt
@@ -191,13 +191,6 @@ Standard plugins ~
|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 32bc84fc05..183ca30ad3 100644
--- a/runtime/doc/if_cscop.txt
+++ b/runtime/doc/if_cscop.txt
@@ -208,6 +208,11 @@ The available subcommands are:
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 d1e01049a3..74c2c58619 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 @@ The menu is used when:
- 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 2592850211..4cf0d3362c 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 @@ A jump table for the options with a short description can be found at |Q_op|.
'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 54cd9dd761..d2ab20bbb0 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -2124,6 +2124,8 @@ $VIMRUNTIME starting.txt /*$VIMRUNTIME*
: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 @@ Contents quickref.txt /*Contents*
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 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*
@@ -5850,6 +5856,14 @@ mapcheck() eval.txt /*mapcheck()*
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*