Skip to content

Commit 25d758a

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 1496167 + 9b50f36 commit 25d758a

50 files changed

Lines changed: 750 additions & 405 deletions

Some content is hidden

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

runtime/colors/README.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ Search for "highlight_init".
7373
If you think you have a color scheme that is good enough to be used by others,
7474
please check the following items:
7575

76-
- Source the tools/check_colors.vim script to check for common mistakes.
76+
- Source the $VIMRUNTIME/colors/tools/check_colors.vim script to check for
77+
common mistakes.
7778
- Does it work in a color terminal as well as in the GUI?
7879
- Is "g:colors_name" set to a meaningful value? In case of doubt you can do
7980
it this way:

runtime/doc/autocmd.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*autocmd.txt* For Vim version 8.0. Last change: 2018 Apr 30
1+
*autocmd.txt* For Vim version 8.0. Last change: 2018 May 03
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -469,6 +469,9 @@ BufWinEnter After a buffer is displayed in a window. This
469469
existing buffer. But it does happen for a
470470
":split" with the name of the current buffer,
471471
since it reloads that buffer.
472+
Does not happen for a terminal window, because
473+
it starts in Terminal-Job mode and Normal mode
474+
commands won't work. Use |TerminalOpen| instead.
472475
*BufWinLeave*
473476
BufWinLeave Before a buffer is removed from a window.
474477
Not when it's still visible in another window.

runtime/doc/change.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*change.txt* For Vim version 8.0. Last change: 2018 Apr 17
1+
*change.txt* For Vim version 8.0. Last change: 2018 May 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -110,7 +110,7 @@ is an error when 'cpoptions' includes the 'E' flag.
110110
J Join [count] lines, with a minimum of two lines.
111111
Remove the indent and insert up to two spaces (see
112112
below). Fails when on the last line of the buffer.
113-
If [count] is too big it is reduce to the number of
113+
If [count] is too big it is reduced to the number of
114114
lines available.
115115

116116
*v_J*
@@ -446,7 +446,7 @@ This depends on the 'nrformats' option:
446446

447447
For decimals a leading negative sign is considered for incrementing/
448448
decrementing, for binary, octal and hex values, it won't be considered. To
449-
ignore the sign Visually select the number before using CTRL-A or CTRL-X.
449+
ignore the sign Visually select the number before using CTRL-A or CTRL-X.
450450

451451
For numbers with leading zeros (including all octal and hexadecimal numbers),
452452
Vim preserves the number of characters in the number when possible. CTRL-A on

runtime/doc/develop.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*develop.txt* For Vim version 8.0. Last change: 2018 Apr 23
1+
*develop.txt* For Vim version 8.0. Last change: 2018 May 02
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -18,7 +18,8 @@ See the file README.txt in the "src" directory for an overview of the source
1818
code.
1919

2020
Vim is open source software. Everybody is encouraged to contribute to help
21-
improving Vim. For sending patches a context diff "diff -c" is preferred.
21+
improving Vim. For sending patches a unified diff "diff -u" is preferred.
22+
You can create a pull request on github, but it's not required.
2223
Also see http://vim.wikia.com/wiki/How_to_make_and_submit_a_patch.
2324

2425
==============================================================================

runtime/doc/gui_x11.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*gui_x11.txt* For Vim version 8.0. Last change: 2017 Jul 28
1+
*gui_x11.txt* For Vim version 8.0. Last change: 2018 May 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -61,6 +61,9 @@ launches the gui but doesn't fork (see |mvim|). However, doing |:gui| in an
6161
already running vim will never fork in MacVim.
6262

6363
"gvim --nofork" does the same as "gvim -f".
64+
65+
When there are running jobs Vim will not fork, because the processes would no
66+
longer be child processes.
6467
*E851* *E852*
6568
When starting the GUI fails Vim will try to continue running in the terminal.
6669

runtime/doc/map.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*map.txt* For Vim version 8.0. Last change: 2017 Sep 23
1+
*map.txt* For Vim version 8.0. Last change: 2018 May 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -542,9 +542,9 @@ scenario: >
542542
:imap <M-C> foo
543543
:set encoding=utf-8
544544
The mapping for <M-C> is defined with the latin1 encoding, resulting in a 0xc3
545-
byte. If you type the character á (0xe1 <M-a>) in UTF-8 encoding this is the
545+
byte. If you type the character á (0xe1 <M-a>) in UTF-8 encoding this is the
546546
two bytes 0xc3 0xa1. You don't want the 0xc3 byte to be mapped then or
547-
otherwise it would be impossible to type the á character.
547+
otherwise it would be impossible to type the á character.
548548

549549
*<Leader>* *mapleader*
550550
To define a mapping which uses the "mapleader" variable, the special string

runtime/doc/mlang.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*mlang.txt* For Vim version 8.0. Last change: 2017 Mar 04
1+
*mlang.txt* For Vim version 8.0. Last change: 2018 May 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -190,8 +190,8 @@ you can do it without restarting Vim: >
190190
:source $VIMRUNTIME/menu.vim
191191
192192
Each part of a menu path is translated separately. The result is that when
193-
"Help" is translated to "Hilfe" and "Overview" to "Überblick" then
194-
"Help.Overview" will be translated to "Hilfe.Überblick".
193+
"Help" is translated to "Hilfe" and "Overview" to "Überblick" then
194+
"Help.Overview" will be translated to "Hilfe.Überblick".
195195

196196
==============================================================================
197197
3. Scripts *multilang-scripts*

runtime/doc/os_vms.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*os_vms.txt* For Vim version 8.0. Last change: 2014 Aug 29
1+
*os_vms.txt* For Vim version 8.0. Last change: 2018 May 06
22

33

44
VIM REFERENCE MANUAL
@@ -702,13 +702,13 @@ In a cluster that contains nodes with different architectures like below:
702702
$show cluster
703703
View of Cluster from system ID 11655 node: TOR 18-AUG-2008 11:58:31
704704
+---------------------------------+
705-
¦ SYSTEMS ¦ MEMBERS ¦
706-
+-----------------------+---------¦
707-
¦ NODE ¦ SOFTWARE ¦ STATUS ¦
708-
+--------+--------------+---------¦
709-
¦ TOR ¦ VMS V7.3-2 ¦ MEMBER ¦
710-
¦ TITAN2 ¦ VMS V8.3 ¦ MEMBER ¦
711-
¦ ODIN ¦ VMS V7.3-2 ¦ MEMBER ¦
705+
| SYSTEMS | MEMBERS |
706+
+-----------------------+---------|
707+
| NODE | SOFTWARE | STATUS |
708+
+--------+--------------+---------|
709+
| TOR | VMS V7.3-2 | MEMBER |
710+
| TITAN2 | VMS V8.3 | MEMBER |
711+
| ODIN | VMS V7.3-2 | MEMBER |
712712
+---------------------------------+
713713

714714
It is convenient to have a common VIM directory but execute different

runtime/doc/quickfix.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 8.0. Last change: 2018 Apr 28
1+
*quickfix.txt* For Vim version 8.0. Last change: 2018 May 01
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1257,7 +1257,7 @@ or >
12571257
to indicate the column of the error. This is to be used in a multi-line error
12581258
message. See |errorformat-javac| for a useful example.
12591259

1260-
The "%s" conversion specifies the text to search for to locate the error line.
1260+
The "%s" conversion specifies the text to search for, to locate the error line.
12611261
The text is used as a literal string. The anchors "^" and "$" are added to
12621262
the text to locate the error line exactly matching the search text and the
12631263
text is prefixed with the "\V" atom to make it "very nomagic". The "%s"

runtime/doc/starting.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*starting.txt* For Vim version 8.0. Last change: 2018 Mar 14
1+
*starting.txt* For Vim version 8.0. Last change: 2018 May 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -127,7 +127,8 @@ argument.
127127
On VMS all option arguments are assumed to be lowercase, unless preceded with
128128
a slash. Thus "-R" means recovery and "-/R" readonly.
129129

130-
--help *-h* *--help*
130+
--help *-h* *--help* *-?*
131+
-?
131132
-h Give usage (help) message and exit. {not in Vi}
132133
See |info-message| about capturing the text.
133134

0 commit comments

Comments
 (0)