Skip to content

Commit f7f40f0

Browse files
committed
{popup,quickfix,repeat,windows}.txt: Update Vim 8.2.2517
1 parent 01ec8b2 commit f7f40f0

File tree

4 files changed

+23
-10
lines changed

4 files changed

+23
-10
lines changed

en/popup.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*popup.txt* For Vim version 8.2. Last change: 2021 Jan 21
1+
*popup.txt* For Vim version 8.2. Last change: 2021 Feb 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -620,7 +620,8 @@ The second argument of |popup_create()| is a dictionary with options:
620620
property moves. Use an empty string to remove. See
621621
|popup-textprop-pos|.
622622
textpropwin What window to search for the text property. When
623-
omitted or invalid the current window is used.
623+
omitted or invalid the current window is used. Used
624+
when "textprop" is present.
624625
textpropid Used to identify the text property when "textprop" is
625626
present. Use zero to reset.
626627
fixed When FALSE (the default), and:

en/quickfix.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*quickfix.txt* For Vim version 8.2. Last change: 2020 May 31
1+
*quickfix.txt* For Vim version 8.2. Last change: 2021 Feb 05
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1025,6 +1025,12 @@ commands can be combined to create a NewGrep command: >
10251025
'smartcase' is not used.
10261026
If {pattern} is empty (e.g. // is specified), the last
10271027
used search pattern is used. |last-pattern|
1028+
1029+
|QuickFixCmdPre| and |QuickFixCmdPost| are triggered.
1030+
A file that is opened for matching may use a buffer
1031+
number, but it is reused if possible to avoid
1032+
consuming buffer numbers.
1033+
10281034
:{count}vim[grep] ...
10291035
When a number is put before the command this is used
10301036
as the maximum number of matches to find. Use

en/repeat.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,13 +354,15 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
354354
Vim version, or update Vim to a newer version. See
355355
|vimscript-version| for what changed between versions.
356356

357-
:vim9[script] [noclear] *:vim9* *:vim9script*
357+
:vim9s[cript] [noclear] *:vim9s* *:vim9script*
358358
Marks a script file as containing |Vim9-script|
359359
commands. Also see |vim9-namespace|.
360360
Must be the first command in the file.
361361
For [noclear] see |vim9-reload|.
362362
Without the |+eval| feature this changes the syntax
363363
for some commands.
364+
See |:vim9cmd| for executing one command with Vim9
365+
syntax and semantics.
364366

365367
*:scr* *:scriptnames*
366368
:scr[iptnames] List all sourced script names, in the order they were

en/windows.txt

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*windows.txt* For Vim version 8.2. Last change: 2020 Dec 18
1+
*windows.txt* For Vim version 8.2. Last change: 2021 Feb 06
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -138,10 +138,12 @@ status line is inverted anyway; you will only see this problem on terminals
138138
that have termcap codes for italics.
139139

140140
*filler-lines*
141-
The lines after the last buffer line in a window are called filler lines.
142-
These lines start with a tilde (~) character. By default, these are
143-
highlighted as NonText (|hl-NonText|). The EndOfBuffer highlight group
144-
(|hl-EndOfBuffer|) can be used to change the highlighting of filler lines.
141+
The lines after the last buffer line in a window are called filler lines. By
142+
default, these lines start with a tilde (~) character. The 'eob' item in the
143+
'fillchars' option can be used to change this character. By default, these
144+
characters are highlighted as NonText (|hl-NonText|). The EndOfBuffer
145+
highlight group (|hl-EndOfBuffer|) can be used to change the highlighting of
146+
the filler characters.
145147

146148
==============================================================================
147149
3. Opening and closing a window *opening-window* *E36*
@@ -208,7 +210,9 @@ CTRL-W CTRL_N *CTRL-W_CTRL-N*
208210
:[N]new [++opt] [+cmd] {file}
209211
:[N]sp[lit] [++opt] [+cmd] {file} *:split_f*
210212
Create a new window and start editing file {file} in it. This
211-
behaves like a ":split" first, and then an ":e" command.
213+
behaves almost like a ":split" first, and then an ":edit"
214+
command, but the alternate file name in the original window is
215+
set to {file}.
212216
If [+cmd] is given, execute the command when the file has been
213217
loaded |+cmd|.
214218
Also see |++opt|.

0 commit comments

Comments
 (0)