updated for version 7.2a

This commit is contained in:
Bram Moolenaar
2008-06-24 22:14:38 +00:00
parent c1a11ed54c
commit 864207de08
17 changed files with 1286 additions and 92 deletions
+3 -6
View File
@@ -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}
+6 -5
View File
@@ -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*
+6 -2
View File
@@ -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.
+1 -1
View File
@@ -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