Skip to content

Commit 2052c48

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents cb4aa03 + 8c34aa0 commit 2052c48

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+950
-546
lines changed

runtime/doc/editing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ If you want to keep the changed buffer without saving it, switch on the
276276

277277
*:vie* *:view*
278278
:vie[w][!] [++opt] [+cmd] file
279-
When used in Ex mode: Leave |Ex mode|, go back to
279+
When used in Ex mode: Leave |Ex-mode|, go back to
280280
Normal mode. Otherwise same as |:edit|, but set
281281
'readonly' option for this buffer. {not in Vi}
282282

runtime/doc/eval.txt

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 8.0. Last change: 2017 Mar 04
1+
*eval.txt* For Vim version 8.0. Last change: 2017 Mar 09
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1904,6 +1904,8 @@ v:termresponse The escape sequence returned by the terminal for the |t_RV|
19041904

19051905
*v:testing* *testing-variable*
19061906
v:testing Must be set before using `test_garbagecollect_now()`.
1907+
Also, when set certain error messages won't be shown for 2
1908+
seconds. (e.g. "'dictionary' option is empty")
19071909

19081910
*v:this_session* *this_session-variable*
19091911
v:this_session Full filename of the last loaded or saved session file. See
@@ -7797,14 +7799,6 @@ test_autochdir() *test_autochdir()*
77977799
Set a flag to enable the effect of 'autochdir' before Vim
77987800
startup has finished.
77997801

7800-
*test_disable_char_avail()*
7801-
test_disable_char_avail({expr})
7802-
When {expr} is 1 the internal char_avail() function will
7803-
return |FALSE|. When {expr} is 0 the char_avail() function will
7804-
function normally.
7805-
Only use this for a test where typeahead causes the test not
7806-
to work. E.g., to trigger the CursorMovedI autocommand event.
7807-
78087802
test_garbagecollect_now() *test_garbagecollect_now()*
78097803
Like garbagecollect(), but executed right away. This must
78107804
only be called directly to avoid any structure to exist
@@ -7840,6 +7834,18 @@ test_null_partial() *test_null_partial()*
78407834
test_null_string() *test_null_string()*
78417835
Return a String that is null. Only useful for testing.
78427836

7837+
test_override({name}, {val}) *test_override()*
7838+
Overrides certain parts of Vims internal processing to be able
7839+
to run tests. Only to be used for testing Vim!
7840+
The override is enabled when {val} is non-zero and removed
7841+
when {val} is zero.
7842+
Current supported values for name are:
7843+
7844+
name effect when {val} is non-zero ~
7845+
redraw disable the redrawing() function
7846+
char_avail disable the char_avail() function
7847+
ALL clear all overrides ({val} is not used)
7848+
78437849
test_settime({expr}) *test_settime()*
78447850
Set the time Vim uses internally. Currently only used for
78457851
timestamps in the history, as they are used in viminfo, and

runtime/doc/if_pyth.txt

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*if_pyth.txt* For Vim version 8.0. Last change: 2017 Feb 18
1+
*if_pyth.txt* For Vim version 8.0. Last change: 2017 Mar 09
22

33

44
VIM REFERENCE MANUAL by Paul Moore
@@ -17,6 +17,7 @@ The Python Interface to Vim *python* *Python*
1717
9. Dynamic loading |python-dynamic|
1818
10. Python 3 |python3|
1919
11. Python X |python_x|
20+
12. Building with Python support |python-building|
2021

2122
{Vi does not have any of these commands}
2223

@@ -879,5 +880,27 @@ If a user prefers Python 2 and want to fallback to Python 3, he needs to set
879880
set pyx=3
880881
endif
881882
883+
==============================================================================
884+
12. Building with Python support *python-building*
885+
886+
A few hints for building with Python 2 or 3 support.
887+
888+
UNIX
889+
890+
See src/Makefile for how to enable including the Python interface.
891+
892+
On Ubuntu you will want to install these packages for Python 2:
893+
python
894+
python-dev
895+
For Python 3:
896+
python3
897+
pytyon3-dev
898+
For Python 3.6:
899+
python3.6
900+
pytyon3.6-dev
901+
902+
If you have more than one version of Python 3, you need to link python3 to the
903+
one you prefer, before running configure.
904+
882905
==============================================================================
883906
vim:tw=78:ts=8:ft=help:norl:

runtime/doc/map.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*map.txt* For Vim version 8.0. Last change: 2016 Oct 15
1+
*map.txt* For Vim version 8.0. Last change: 2017 Mar 10
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -584,7 +584,8 @@ Upper and lowercase differences are ignored.
584584

585585
*map-comments*
586586
It is not possible to put a comment after these commands, because the '"'
587-
character is considered to be part of the {lhs} or {rhs}.
587+
character is considered to be part of the {lhs} or {rhs}. However, one can
588+
use |", since this starts a new, empty command with a comment.
588589

589590
*map_bar* *map-bar*
590591
Since the '|' character is used to separate a map command from the next

runtime/doc/motion.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*motion.txt* For Vim version 8.0. Last change: 2016 Nov 24
1+
*motion.txt* For Vim version 8.0. Last change: 2017 Mar 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -193,7 +193,7 @@ l or *l*
193193

194194
*$* *<End>* *<kEnd>*
195195
$ or <End> To the end of the line. When a count is given also go
196-
[count - 1] lines downward |inclusive|.
196+
[count - 1] lines downward. |inclusive| motion.
197197
In Visual mode the cursor goes to just after the last
198198
character in the line.
199199
When 'virtualedit' is active, "$" may move the cursor

0 commit comments

Comments
 (0)