summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-06-24 22:14:38 +0000
committerBram Moolenaar <Bram@vim.org>2008-06-24 22:14:38 +0000
commit864207de089119377a1e1e5d411307d8eb57399e (patch)
treed5bc119317f9c46d7136d1e12f06bac3b13d491b /runtime/doc
parentc1a11ed54c7974b74be38f2aef6a200d7cfc878e (diff)
updated for version 7.2a
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/hebrew.txt9
-rw-r--r--runtime/doc/repeat.txt11
-rw-r--r--runtime/doc/starting.txt8
-rw-r--r--runtime/doc/usr_23.txt2
4 files changed, 16 insertions, 14 deletions
diff --git a/runtime/doc/hebrew.txt b/runtime/doc/hebrew.txt
index 966befef08..600f277188 100644
--- a/runtime/doc/hebrew.txt
+++ b/runtime/doc/hebrew.txt
@@ -1,4 +1,4 @@
-*hebrew.txt* For Vim version 7.1. Last change: 2003 May 11
+*hebrew.txt* For Vim version 7.2a. Last change: 2007 Jun 14
VIM REFERENCE MANUAL by Ron Aaron (and Avner Lottem)
@@ -7,11 +7,8 @@
Hebrew Language support (options & mapping) for Vim *hebrew*
The supporting 'rightleft' functionality was originally created by Avner
-Lottem:
- E-mail: alottem@iil.intel.com
- Phone: +972-4-8307322
-
-Ron Aaron <ron@ronware.org> is currently helping support these features.
+Lottem. <alottem at gmail dot com> Ron Aaron <ron at ronware dot org> is
+currently helping support these features.
{Vi does not have any of these commands}
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 2361ddcb19..38a485753d 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -1,4 +1,4 @@
-*repeat.txt* For Vim version 7.1. Last change: 2007 Jan 07
+*repeat.txt* For Vim version 7.2a. Last change: 2007 Aug 12
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -89,10 +89,11 @@ This replaces all occurrences of "pat" with "PAT". The same can be done with:
:%s/pat/PAT/g
Which is two characters shorter!
-A special case is using ":visual" as a command. This will move to a matching
-line, go to Normal mode to let you execute commands there until you use |Q| to
-return to Ex mode. This will be repeated for each matching line. While doing
-this you cannot use ":global".
+When using "global" in Ex mode, a special case is using ":visual" as a
+command. This will move to a matching line, go to Normal mode to let you
+execute commands there until you use |Q| to return to Ex mode. This will be
+repeated for each matching line. While doing this you cannot use ":global".
+To abort this type CTRL-C twice.
==============================================================================
3. Complex repeats *complex-repeat*
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index b58dade4ae..c017fb4b79 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -1,4 +1,4 @@
-*starting.txt* For Vim version 7.1. Last change: 2007 Aug 14
+*starting.txt* For Vim version 7.2a. Last change: 2008 Jun 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1386,10 +1386,14 @@ using this command: >
vim -c "normal '0"
-In a shell you could make an alias for it: >
+In a csh compatible shell you could make an alias for it: >
alias lvim vim -c '"'normal "'"0'"'
+For a bash-like shell: >
+
+ alias lvim='vim -c "normal '\''0"'
+
Use the "r" flag in 'viminfo' to specify for which files no marks should be
remembered.
diff --git a/runtime/doc/usr_23.txt b/runtime/doc/usr_23.txt
index 59c5c529f0..e0aa05dcb0 100644
--- a/runtime/doc/usr_23.txt
+++ b/runtime/doc/usr_23.txt
@@ -1,4 +1,4 @@
-*usr_23.txt* For Vim version 7.1. Last change: 2006 Apr 24
+*usr_23.txt* For Vim version 7.2a. Last change: 2006 Apr 24
VIM USER MANUAL - by Bram Moolenaar