Skip to content

Commit e18c0b3

Browse files
committed
Updated runtime files.
1 parent be6aa46 commit e18c0b3

17 files changed

Lines changed: 144 additions & 128 deletions

runtime/doc/channel.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*channel.txt* For Vim version 7.4. Last change: 2016 Mar 14
1+
*channel.txt* For Vim version 7.4. Last change: 2016 Mar 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -153,6 +153,9 @@ Use |ch_status()| to see if the channel could be opened.
153153
excluding the NL.
154154
When "mode" is "raw" the "msg" argument is the whole message
155155
as a string.
156+
157+
For all callbacks: Use |function()| to bind it to arguments
158+
and/or a dictionary.
156159
*out_cb*
157160
"out_cb" A function like "callback" but used for stdout. Only for when
158161
the channel uses pipes. When "out_cb" wasn't set the channel

runtime/doc/helphelp.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*helphelp.txt* For Vim version 7.4. Last change: 2014 Sep 19
1+
*helphelp.txt* For Vim version 7.4. Last change: 2016 Mar 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -197,6 +197,9 @@ command: >
197197
*E154* *E150* *E151* *E152* *E153* *E670*
198198
:helpt[ags] [++t] {dir}
199199
Generate the help tags file(s) for directory {dir}.
200+
When {dir} is ALL then all "doc" directories in
201+
'runtimepath' will be used.
202+
200203
All "*.txt" and "*.??x" files in the directory and
201204
sub-directories are scanned for a help tag definition
202205
in between stars. The "*.??x" files are for

runtime/doc/if_lua.txt

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -410,13 +410,20 @@ This means that Vim will search for the Lua DLL or shared library file only
410410
when needed. When you don't use the Lua interface you don't need it, thus
411411
you can use Vim without this file.
412412

413-
On MS-Windows to use the Lua interface the Lua DLL must be in your search path.
414-
In a console window type "path" to see what directories are used. The version
415-
of the DLL must match the Lua version Vim was compiled with.
416413

417-
On Unix the 'luadll' option can be used to specify the Lua shared library file
418-
instead of DYNAMIC_LUA_DLL file what was specified at compile time. The
419-
version of the shared library must match the Lua version Vim was compiled with.
414+
MS-Windows ~
415+
416+
To use the Lua interface the Lua DLL must be in your search path. In a
417+
console window type "path" to see what directories are used. The 'luadll'
418+
option can be also used to specify the Lua DLL. The version of the DLL must
419+
match the Lua version Vim was compiled with.
420+
421+
422+
Unix ~
423+
424+
The 'luadll' option can be used to specify the Lua shared library file instead
425+
of DYNAMIC_LUA_DLL file what was specified at compile time. The version of
426+
the shared library must match the Lua version Vim was compiled with.
420427

421428

422429
==============================================================================

runtime/doc/if_perl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ used for building Vim.
284284
To use the Perl interface the Perl DLL must be in your search path.
285285
If Vim reports it cannot find the perl512.dll, make sure your $PATH includes
286286
the directory where it is located. The Perl installer normally does that.
287-
In a console window type "path" to see what directories are used.
287+
In a console window type "path" to see what directories are used. The
288+
'perldll' option can be also used to specify the Perl DLL.
288289

289290
The name of the DLL must match the Perl version Vim was compiled with.
290291
Currently the name is "perl512.dll". That is for Perl 5.12. To know for

runtime/doc/if_pyth.txt

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -686,18 +686,24 @@ This means that Vim will search for the Python DLL or shared library file only
686686
when needed. When you don't use the Python interface you don't need it, thus
687687
you can use Vim without this file.
688688

689-
On MS-Windows to use the Python interface the Python DLL must be in your search
690-
path. In a console window type "path" to see what directories are used.
689+
690+
MS-Windows ~
691+
692+
To use the Python interface the Python DLL must be in your search path. In a
693+
console window type "path" to see what directories are used. The 'pythondll'
694+
or 'pythonthreedll' option can be also used to specify the Python DLL.
691695

692696
The name of the DLL must match the Python version Vim was compiled with.
693697
Currently the name is "python24.dll". That is for Python 2.4. To know for
694698
sure edit "gvim.exe" and search for "python\d*.dll\c".
695699

696-
On Unix the 'pythondll' or 'pythonthreedll' option can be used to specify the
697-
Python shared library file instead of DYNAMIC_PYTHON_DLL or
698-
DYNAMIC_PYTHON3_DLL file what were specified at compile time. The version of
699-
the shared library must match the Python 2.x or Python 3 version Vim was
700-
compiled with.
700+
701+
Unix ~
702+
703+
The 'pythondll' or 'pythonthreedll' option can be used to specify the Python
704+
shared library file instead of DYNAMIC_PYTHON_DLL or DYNAMIC_PYTHON3_DLL file
705+
what were specified at compile time. The version of the shared library must
706+
match the Python 2.x or Python 3 version Vim was compiled with.
701707

702708
==============================================================================
703709
10. Python 3 *python3*

runtime/doc/if_ruby.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ This means that Vim will search for the Ruby DLL file or shared library only
199199
when needed. When you don't use the Ruby interface you don't need it, thus
200200
you can use Vim even though this library file is not on your system.
201201

202+
202203
MS-Windows ~
203204

204205
You need to install the right version of Ruby for this to work. You can find
@@ -207,7 +208,8 @@ http://www.garbagecollect.jp/ruby/mswin32/en/download/release.html
207208
Currently that is ruby-1.9.1-p429-i386-mswin32.zip
208209

209210
To use the Ruby interface the Ruby DLL must be in your search path. In a
210-
console window type "path" to see what directories are used.
211+
console window type "path" to see what directories are used. The 'rubydll'
212+
option can be also used to specify the Ruby DLL.
211213

212214
The name of the DLL must match the Ruby version Vim was compiled with.
213215
Currently the name is "msvcrt-ruby191.dll". That is for Ruby 1.9.1. To know
@@ -218,6 +220,7 @@ and comment-out the check for _MSC_VER.
218220
You may also need to rename the include directory name to match the version,
219221
strangely for Ruby 1.9.3 the directory is called 1.9.1.
220222

223+
221224
Unix ~
222225

223226
The 'rubydll' option can be used to specify the Ruby shared library file

runtime/doc/if_tcl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,8 @@ can use Vim without this file.
526526
MS-Windows ~
527527

528528
To use the Tcl interface the Tcl DLL must be in your search path. In a
529-
console window type "path" to see what directories are used.
529+
console window type "path" to see what directories are used. The 'tcldll'
530+
option can be also used to specify the Tcl DLL.
530531

531532
The name of the DLL must match the Tcl version Vim was compiled with.
532533
Currently the name is "tcl86.dll". That is for Tcl 8.6. To know for sure

runtime/doc/index.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*index.txt* For Vim version 7.4. Last change: 2016 Mar 04
1+
*index.txt* For Vim version 7.4. Last change: 2016 Mar 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1395,6 +1395,7 @@ tag command action ~
13951395
|:ounmenu| :ounme[nu] remove menu for Operator-pending mode
13961396
|:ownsyntax| :ow[nsyntax] set new local syntax highlight for this window
13971397
|:packadd| :pa[ckadd] add a plugin from 'packpath'
1398+
|:packloadall| :packl[oadall] load all packages under 'packpath'
13981399
|:pclose| :pc[lose] close preview window
13991400
|:pedit| :ped[it] edit file in the preview window
14001401
|:perl| :pe[rl] execute Perl command

runtime/doc/quickfix.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 7.4. Last change: 2016 Jan 21
1+
*quickfix.txt* For Vim version 7.4. Last change: 2016 Mar 19
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -56,6 +56,10 @@ The following quickfix commands can be used. The location list commands are
5656
similar to the quickfix commands, replacing the 'c' prefix in the quickfix
5757
command with 'l'.
5858

59+
*E924*
60+
If the current window was closed by an |autocommand| while processing a
61+
location list command, it will be aborted.
62+
5963
*:cc*
6064
:cc[!] [nr] Display error [nr]. If [nr] is omitted, the same
6165
error is displayed again. Without [!] this doesn't

runtime/doc/repeat.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim version 7.4. Last change: 2016 Mar 09
1+
*repeat.txt* For Vim version 7.4. Last change: 2016 Mar 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -249,15 +249,18 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
249249

250250
Also see |pack-add|.
251251

252+
*:packl* *:packloadall*
252253
:packloadall[!] Load all packages in the "start" directories under
253254
'packpath'. The directories found are added to
254255
'runtimepath'.
255-
This normally done during startup, after loading your
256-
.vimrc file. With this command it can be done
257-
earlier.
256+
This is normally done automatically during startup,
257+
after loading your .vimrc file. With this command it
258+
can be done earlier.
258259
Packages will be loaded only once. After this command
259260
it won't happen again. When the optional ! is added
260261
this command will load packages even when done before.
262+
An Error only causes sourcing the script where it
263+
happens to be aborted, further plugins will be loaded.
261264
See |packages|.
262265

263266
:scripte[ncoding] [encoding] *:scripte* *:scriptencoding* *E167*

0 commit comments

Comments
 (0)