Skip to content

Commit 9e73f9b

Browse files
committed
{autocmd,change,gui_x11,help,pattern,popup,repeat,spell,version8}.txt: Update Vim 9.0.0195
1 parent 64ad987 commit 9e73f9b

File tree

9 files changed

+12
-9
lines changed

9 files changed

+12
-9
lines changed

en/autocmd.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1275,7 +1275,7 @@ User Never executed automatically. To be used for
12751275
if exists('#User#MyEvent')
12761276
doautocmd User MyEvent
12771277
endif
1278-
1278+
<
12791279
*SigUSR1*
12801280
SigUSR1 After the SIGUSR1 signal has been detected.
12811281
Could be used if other ways of notifying Vim

en/change.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,8 @@ When the {string} starts with "\=" it is evaluated as an expression, see
802802
|sub-replace-expression|. You can use that for complex replacement or special
803803
characters.
804804

805+
The substitution is limited in recursion to 4 levels. *E1290*
806+
805807
Otherwise these characters in {string} have a special meaning:
806808
*:s%*
807809
When {string} is equal to "%" and '/' is included with the 'cpoptions' option,

en/gui_x11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ Of these three, Vim uses PRIMARY when reading and writing the "* register
680680
register. Vim does not access the SECONDARY selection.
681681

682682
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.
683+
the plus and the star register both use the system clipboard.
684684

685685
Examples: (assuming the default option values)
686686
- Select a URL in Visual mode in Vim. Go to your browser and click the

en/help.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Get specific help: It is possible to go directly to whatever you want help
2626
Option ' :help 'textwidth'
2727
Regular expression / :help /[
2828
See |help-summary| for more contexts and an explanation.
29+
See |notation| for an explanation of the help syntax.
2930

3031
Search for help: Type ":help word", then hit CTRL-D to see matching
3132
help entries for "word".

en/pattern.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ $ At end of pattern or in front of "\|", "\)" or "\n" ('magic' on):
928928
becomes invalid. Vim doesn't automatically update the matches.
929929
Similar to moving the cursor for "\%#" |/\%#|.
930930

931-
*/\%l* */\%>l* */\%<l* *E951* *E1204*
931+
*/\%l* */\%>l* */\%<l* *E951* *E1204* *E1273*
932932
\%23l Matches in a specific line.
933933
\%<23l Matches above a specific line (lower line number).
934934
\%>23l Matches below a specific line (higher line number).

en/popup.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ POPUP_CREATE() ARGUMENTS *popup_create-arguments*
591591

592592
The first argument of |popup_create()| (and the second argument to
593593
|popup_settext()|) specifies the text to be displayed, and optionally text
594-
properties. It is in one of four forms:
594+
properties. It is in one of four forms: *E1284*
595595
- a buffer number
596596
- a string
597597
- a list of strings

en/repeat.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ For writing a Vim script, see chapter 41 of the user manual |usr_41.txt|.
231231
Examples: >
232232
:4,5source
233233
:10,18source ++clear
234-
234+
<
235235
*:source!*
236236
:so[urce]! {file} Read Vim commands from {file}. These are commands
237237
that are executed from Normal mode, like you type

en/spell.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ zuW *zuG* *zuW*
103103
zuG Undo |zW| and |zG|, remove the word from the internal
104104
word list. Count used as with |zg|.
105105

106-
*:spe* *:spellgood*
106+
*:spe* *:spellgood* *E1280*
107107
:[count]spe[llgood] {word}
108108
Add {word} as a good word to 'spellfile', like with
109109
|zg|. Without count the first name is used, with a

en/version8.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version8.txt* For Vim version 8.2. Last change: 2022 Feb 26
1+
*version8.txt* For Vim version 9.0. Last change: 2022 Feb 26
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -370,8 +370,8 @@ New autocommand events: ~
370370
|OptionSet| after setting any option
371371
|TabClosed| after closing a tab page
372372
|TabNew| after creating a new tab page
373-
|TextChangedI| after a change was made to the text in Insert mode
374373
|TextChanged| after a change was made to the text in Normal mode
374+
|TextChangedI| after a change was made to the text in Insert mode
375375
|WinNew| after creating a new window
376376

377377

@@ -18427,7 +18427,7 @@ Problem: When 'wrapscan' is off "gn" does not select the whole pattern when
1842718427
Solution: Check if the search fails. (Christian Brabandt, closes #1683)
1842818428
Files: src/search.c, src/testdir/test_gn.vim
1842918429

18430-
Patch 8.0.0628 (after 8.0.0626
18430+
Patch 8.0.0628 (after 8.0.0626)
1843118431
Problem: Cursor disappears after silent mapping. (Ramel Eshed)
1843218432
Solution: Do restore the cursor when it was changed, but don't change it in
1843318433
the first place for a silent mapping.

0 commit comments

Comments
 (0)