Skip to content

Commit

Permalink
updated for version 7.0131
Browse files Browse the repository at this point in the history
  • Loading branch information
brammool committed Aug 16, 2005
1 parent ae5bce1 commit 5b8d8fd
Show file tree
Hide file tree
Showing 66 changed files with 1,775 additions and 600 deletions.
219 changes: 98 additions & 121 deletions runtime/plugin/netrw.vim → runtime/autoload/netrw.vim

Large diffs are not rendered by default.

16 changes: 15 additions & 1 deletion runtime/doc/eval.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4683,7 +4683,21 @@ instead of "s:" when the mapping is expanded outside of the script.
{name} can also be a Dictionary entry that is a
Funcref: >
:function dict.init
< *E124* *E125*
<
*:function-verbose*
When 'verbose' is non-zero, listing a function will also display where it was
last defined. Example: >
:verbose function SetFileTypeSH
function SetFileTypeSH(name)
Last set from /usr/share/vim/vim-7.0/filetype.vim
<
When the function was defined by hand there is no "Last set" message. When
the function was defined while executing a function, user command or
autocommand, the script in which it was defined is reported.
{not available when compiled without the +eval feature}

*E124* *E125*
:fu[nction][!] {name}([arguments]) [range] [abort] [dict]
Define a new function by the name {name}. The name
must be made of alphanumeric characters and '_', and
Expand Down
19 changes: 16 additions & 3 deletions runtime/doc/map.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*map.txt* For Vim version 7.0aa. Last change: 2005 Jul 21
*map.txt* For Vim version 7.0aa. Last change: 2005 Aug 16


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -868,6 +868,20 @@ scripts.

:com[mand] {cmd} List the user-defined commands that start with {cmd}

*:command-verbose*
When 'verbose' is non-zero, listing a command will also display where it was
last defined. Example: >
:verbose command TOhtml
Name Args Range Complete Definition
TOhtml 0 % :call Convert2HTML(<line1>, <line2>)
Last set from /usr/share/vim/vim-7.0/plugin/tohtml.vim
<
When the command was defined by hand there is no "Last set" message. When the
command was defined while executing a function, user command or autocommand,
the script in which it was defined is reported.
{not available when compiled without the +eval feature}

*E174* *E182*
:com[mand][!] [{attr}...] {cmd} {rep}
Define a user command. The name of the command is
Expand Down Expand Up @@ -1069,8 +1083,7 @@ To allow commands to pass their arguments on to a user-defined function, there
is a special form <f-args> ("function args"). This splits the command
arguments at spaces and Tabs, quotes each argument individually, and the
<f-args> sequence is replaced by the comma-separated list of quoted arguments.
See the Mycmd example below. When there is no argument, <f-args> also has no
argument.
See the Mycmd example below. If no arguments are given <f-args> is removed.

Examples >
Expand Down
Loading

0 comments on commit 5b8d8fd

Please sign in to comment.