Skip to content

Commit

Permalink
Sync with newest CVS repository.
Browse files Browse the repository at this point in the history
git-svn-id: https://vim.svn.sourceforge.net/svnroot/vim/vim7@15 2a77ed30-b011-0410-a7ad-c7884a0aa172
  • Loading branch information
edyfox committed Apr 30, 2006
1 parent 308e2d5 commit 0c964f2
Show file tree
Hide file tree
Showing 24 changed files with 1,224 additions and 360 deletions.
260 changes: 110 additions & 150 deletions runtime/autoload/rubycomplete.vim

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions runtime/doc/editing.txt
@@ -1,4 +1,4 @@
*editing.txt* For Vim version 7.0f. Last change: 2006 Apr 17
*editing.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -343,12 +343,12 @@ CTRL-^ Edit the alternate file (equivalent to ":e #").
separated by a non-filename (see 'isfname') and
non-numeric character. White space between the
filename, the separator and the number are ignored.
Examples: >
eval.c:10
eval.c @ 20
eval.c (30)
eval.c 40
<
Examples:
eval.c:10 ~
eval.c @ 20 ~
eval.c (30) ~
eval.c 40 ~

*v_gF*
{Visual}[count]gF Same as "v_gf".

Expand Down
7 changes: 4 additions & 3 deletions runtime/doc/eval.txt
@@ -1,4 +1,4 @@
*eval.txt* For Vim version 7.0f. Last change: 2006 Apr 26
*eval.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -2344,12 +2344,13 @@ exists({expr}) The result is a Number, which is non-zero if {expr} is
exists("##ColorScheme")
< There must be no space between the symbol (&/$/*/#) and the
name.
Trailing characters that can't be part of the name are often
ignored, but don't depend on it.
Note that the argument must be a string, not the name of the
variable itself! For example: >
exists(bufcount)
< This doesn't check for existence of the "bufcount" variable,
but gets the contents of "bufcount", and checks if that
exists.
but gets the value of "bufcount", and checks if that exists.

expand({expr} [, {flag}]) *expand()*
Expand wildcards and the following special keywords in {expr}.
Expand Down
5 changes: 3 additions & 2 deletions runtime/doc/motion.txt
@@ -1,4 +1,4 @@
*motion.txt* For Vim version 7.0f. Last change: 2006 Apr 28
*motion.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -707,7 +707,8 @@ there are a few restrictions.

The normal method is to select a <tag> until the matching </tag>. For "at"
the tags are included, for "it" they are excluded. But when "it" is repeated
the tags will be included (otherwise nothing would change).
the tags will be included (otherwise nothing would change). Also, "it" used
on a tag block with no contents will select the leading tag.

"<aaa/>" items are skipped. Case is ignored, also for XML where case does
matter.
Expand Down
9 changes: 5 additions & 4 deletions runtime/doc/options.txt
@@ -1,4 +1,4 @@
*options.txt* For Vim version 7.0f. Last change: 2006 Apr 26
*options.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -3201,7 +3201,8 @@ A jump table for the options with a short description can be found at |Q_op|.

For Mac OSX you can use something like this: >
:set guifont=Monaco:h10
< *E236*
< Also see 'macatsui', it can help fix display problems.
*E236*
Note that the fonts must be mono-spaced (all characters have the same
width). An exception is GTK 2: all fonts are accepted, but
mono-spaced fonts look best.
Expand Down Expand Up @@ -5108,8 +5109,8 @@ A jump table for the options with a short description can be found at |Q_op|.
{not available when compiled without the
|+insert_expand| feature}
{not in Vi}
Determines the maximum number of items to show in the popup menu.
When zero as much space as available is used.
Determines the maximum number of items to show in the popup menu for
Insert mode completion. When zero as much space as available is used.
|ins-completion-menu|.


Expand Down
4 changes: 2 additions & 2 deletions runtime/doc/pattern.txt
@@ -1,4 +1,4 @@
*pattern.txt* For Vim version 7.0f. Last change: 2006 Apr 22
*pattern.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -1019,7 +1019,7 @@ x A single character, with no special meaning, matches itself
have almost the same meaning, e.g., when ignoring accents. The form
is:
[=a=]
Currrently this is only implemented for latin1. Also works for the
Currently this is only implemented for latin1. Also works for the
latin1 characters in utf-8 and latin9.
*/[[.* *[..]*
- A collation element. This currently simply accepts a single
Expand Down
6 changes: 3 additions & 3 deletions runtime/doc/term.txt
@@ -1,4 +1,4 @@
*term.txt* For Vim version 7.0f. Last change: 2006 Apr 24
*term.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -751,8 +751,8 @@ which is editing another buffer, the Visual or Select mode is stopped.
In Normal, Visual and Select mode clicking the right mouse button with the alt
key pressed causes the Visual area to become blockwise. When 'mousemodel is
"popup" the left button has to be used with the alt key. Note that this won't
work on systems where the window manager uses the mouse when the alt key is
pressed (it may move the window).
work on systems where the window manager consumes the mouse events when the
alt key is pressed (it may move the window).

*double-click*
Double, triple and quadruple clicks are supported when the GUI is active,
Expand Down
4 changes: 3 additions & 1 deletion runtime/doc/todo.txt
@@ -1,4 +1,4 @@
*todo.txt* For Vim version 7.0f. Last change: 2006 Apr 28
*todo.txt* For Vim version 7.0f. Last change: 2006 Apr 29


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -589,6 +589,8 @@ Macintosh:


"Small" problems:
9 When the last edited file is a help file, using '0 in a new Vim doesn't
edit the file as a help file.
8 When an ":edit" is inside a try command and the ATTENTION prompt is used,
the :catch commands are always executed, also when the file is edited
normally. Should reset did_emsg and undo side effects. Also make sure
Expand Down

0 comments on commit 0c964f2

Please sign in to comment.