Skip to content

Commit f273a01

Browse files
committed
{editing, gui_x11, indent, quickfix, quickref, repeat, starting, tabpage, undo, version4, vi_diff, windows, workshop}.txt: Update Vim 9.0.0057
1 parent 9b4309a commit f273a01

13 files changed

+18
-12
lines changed

en/editing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,7 @@ Examples: >
12251225

12261226
If you want to always use ":confirm", set the 'confirm' option.
12271227

1228-
*:browse* *:bro* *E338*
1228+
*:browse* *:bro* *E338*
12291229
:bro[wse] {command} Open a file selection dialog for an argument to
12301230
{command}. At present this works for |:e|, |:w|,
12311231
|:wall|, |:wq|, |:wqall|, |:x|, |:xall|, |:exit|,

en/gui_x11.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,9 @@ Of these three, Vim uses PRIMARY when reading and writing the "* register
679679
|'clipboard'| of "autoselect"), and CLIPBOARD when reading and writing the "+
680680
register. Vim does not access the SECONDARY selection.
681681

682+
This applies both to the GUI and the terminal version. For non-X11 systems
683+
the plus and the star register both us the system clipboard.
684+
682685
Examples: (assuming the default option values)
683686
- Select a URL in Visual mode in Vim. Go to your browser and click the
684687
middle mouse button in the URL text field. The selected text will be

en/indent.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ The examples below assume a 'shiftwidth' of 4.
291291
<
292292
*cino-g*
293293
gN Place C++ scope declarations N characters from the indent of the
294-
block they are in. (default 'shiftwidth'). By default, a scope
294+
block they are in. (default 'shiftwidth'). By default, a scope
295295
declaration is "public:", "protected:" or "private:". This can
296296
be adjusted with the 'cinscopedecls' option.
297297

en/quickfix.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,9 @@ pattern is used.
568568
The |:Lfilter| command does the same as |:Cfilter| but operates on the current
569569
location list.
570570

571+
The current quickfix/location list is not modified by these commands, so you
572+
can go back to the unfiltered list using the |:colder|/|:lolder| command.
573+
571574
=============================================================================
572575
2. The error window *quickfix-window*
573576

en/quickref.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ Short explanation of each option: *option-list*
643643
'cinkeys' 'cink' keys that trigger indent when 'cindent' is set
644644
'cinoptions' 'cino' how to do indenting when 'cindent' is set
645645
'cinwords' 'cinw' words where 'si' and 'cin' add an indent
646-
'cinscopedecls' 'cinsd' words that are recognized by 'cino-g'
646+
'cinscopedecls' 'cinsd' words that are recognized by 'cino-g'
647647
'clipboard' 'cb' use the clipboard as the unnamed register
648648
'cmdheight' 'ch' number of lines to use for the command-line
649649
'cmdwinheight' 'cwh' height of the command-line window

en/repeat.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*repeat.txt* For Vim version 9.0. Last change: 2022 Apr 08
1+
*repeat.txt* For Vim version 9.0. Last change: 2022 Jun 18
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -197,7 +197,7 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
197197
:so[urce] {file} Read Ex commands from {file}. These are commands that
198198
start with a ":".
199199
Triggers the |SourcePre| autocommand.
200-
200+
*:source-range*
201201
:[range]so[urce] [++clear]
202202
Read Ex commands from the [range] of lines in the
203203
current buffer.

en/starting.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ a slash. Thus "-R" means recovery and "-/R" readonly.
348348
Start logging and write entries to {filename}.
349349
This works like calling `ch_logfile({filename}, 'ao')` very
350350
early during startup.
351-
{only available with the +channel feature}
351+
{only available with the |+channel| feature}
352352

353353
*-D*
354354
-D Debugging. Go to debugging mode when executing the first

en/tabpage.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ something else.
138138
:+tabclose " close the next tab page
139139
:1tabclose " close the first tab page
140140
:$tabclose " close the last tab page
141-
:tabclose -2 " close the 2nd previous tab page
141+
:tabclose -2 " close the 2nd previous tab page
142142
:tabclose + " close the next tab page
143143
:tabclose 3 " close the third tab page
144144
:tabclose $ " close the last tab page

en/undo.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ message about that when opening a file.
257257
Undo files are normally saved in the same directory as the file. This can be
258258
changed with the 'undodir' option.
259259

260-
When the file is encrypted, the text in the undo file is also crypted. The
260+
When the file is encrypted, the text in the undo file is also encrypted. The
261261
same key and method is used. |encryption|
262262

263263
Note that text properties are not stored in the undo file. You can restore

en/version4.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version4.txt* For Vim version 8.2. Last change: 2006 Apr 24
1+
*version4.txt* For Vim version 9.0. Last change: 2006 Apr 24
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar

0 commit comments

Comments
 (0)