summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-04 21:49:37 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-04 21:49:37 +0000
commit36fc535cb1353786d7edacfea1cd3ececaf6cf5d (patch)
treed6384287d657b4fb88c1f66176d870986d5a38fe /runtime/doc
parentd0131a8bd20b330a5ded49989ffc8b79e051dd9d (diff)
updated for version 7.0214
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/cmdline.txt7
-rw-r--r--runtime/doc/develop.txt6
-rw-r--r--runtime/doc/insert.txt6
3 files changed, 12 insertions, 7 deletions
diff --git a/runtime/doc/cmdline.txt b/runtime/doc/cmdline.txt
index 7a860a77f0..8a0f0a4a3e 100644
--- a/runtime/doc/cmdline.txt
+++ b/runtime/doc/cmdline.txt
@@ -1,4 +1,4 @@
-*cmdline.txt* For Vim version 7.0aa. Last change: 2006 Feb 01
+*cmdline.txt* For Vim version 7.0aa. Last change: 2006 Mar 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -970,6 +970,11 @@ that there will be an extra screen redraw.
The buffer used for the command-line window is deleted. Any changes to lines
other than the one that is executed with <CR> are lost.
+If you would like to execute the command under the cursor and then have the
+command-line window open again, you may find this mapping useful: >
+
+ :map <F5> <CR>q:
+
VARIOUS
diff --git a/runtime/doc/develop.txt b/runtime/doc/develop.txt
index 4d12d166c0..cf41477797 100644
--- a/runtime/doc/develop.txt
+++ b/runtime/doc/develop.txt
@@ -1,4 +1,4 @@
-*develop.txt* For Vim version 7.0aa. Last change: 2006 Jan 12
+*develop.txt* For Vim version 7.0aa. Last change: 2006 Mar 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -187,8 +187,8 @@ strchr() vim_strchr() Accepts special characters
strrchr() vim_strrchr() Accepts special characters
isspace() vim_isspace() Can handle characters > 128
iswhite() vim_iswhite() Only TRUE for Tab and space
-memcpy() vim_memmove() Handles overlapped copies
-bcopy() vim_memmove() Handles overlapped copies
+memcpy() mch_memmove() Handles overlapped copies
+bcopy() mch_memmove() Handles overlapped copies
memset() vim_memset() Uniform for all systems
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt
index 0f4436c294..7d904a819b 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 Mar 02
+*insert.txt* For Vim version 7.0aa. Last change: 2006 Mar 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1142,9 +1142,9 @@ Completion of C code requires a tags file. You should use Exuberant ctags,
because it adds extra information that is needed for completion. You can find
it here: http://ctags.sourceforge.net/
For version 5.5.4 you should add a patch that adds the "typename:" field:
-ftp://ftp.vim.org/pub/vim/unstable/patches/ctags-5.5.4.patch
+ ftp://ftp.vim.org/pub/vim/unstable/patches/ctags-5.5.4.patch
A compiled .exe for MS-Windows can be found at:
-http://georgevreilly.com/vim/ctags.html
+ http://georgevreilly.com/vim/ctags.html
If you want to complete system functions you can do something like this. Use
ctags to generate a tags file for all the system header files: >