Skip to content

Commit bcf6a76

Browse files
authored
Merge pull request #1376 from vim-jp/hh-update-few-files
Update {change,cmdline}.{txt,jax} and vim9.txt
2 parents 974e99b + 8367492 commit bcf6a76

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

doc/change.jax

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*change.txt* For Vim バージョン 9.0. Last change: 2023 Sep 19
1+
*change.txt* For Vim バージョン 9.0. Last change: 2023 Nov 15
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -622,9 +622,9 @@ MS-Windows ではシステム関数 GetTempFileName() が使われる。
622622
換を行う。[count] が指定されると、[range] の最終行から
623623
数えて [count] 行で置換を行う。[range] が指定されない
624624
と、現在行から開始する。
625-
*E939*
626-
[count] は正の数でなければならない|cmdline-ranges|
627-
も参照。
625+
*E939* *E1510*
626+
[count] は正の数でなければならない (最大 2147483647)。
627+
|cmdline-ranges| も参照。
628628

629629
[flag] については |:s_flags| を参照。
630630
デリミタは / である必要はない。|pattern-delimiter|

doc/cmdline.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim バージョン 9.0. Last change: 2023 May 20
1+
*cmdline.txt* For Vim バージョン 9.0. Last change: 2023 Nov 15
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -343,7 +343,7 @@ CTRL-] 文字を挿入することなく短縮入力を展開する。
343343
*:history-indexing*
344344
正数は、":history" の一覧表示で最初の列に表示される、項目の絶
345345
対的な番号を表す。この数字は、他の項目が削除されても固定された
346-
ままである。
346+
ままである。(|E1510| を参照)
347347

348348
負数は項目の相対的な位置を示す。これは最も新しい項目 (番号 -1
349349
を持つ) から後ろ向きに数えたものである。

en/change.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*change.txt* For Vim version 9.0. Last change: 2023 Sep 19
1+
*change.txt* For Vim version 9.0. Last change: 2023 Nov 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -644,9 +644,9 @@ For other systems the tmpnam() library function is used.
644644
current line only. When [count] is given, replace in
645645
[count] lines, starting with the last line in [range].
646646
When [range] is omitted start in the current line.
647-
*E939*
648-
[count] must be a positive number. Also see
649-
|cmdline-ranges|.
647+
*E939* *E1510*
648+
[count] must be a positive number (max 2147483647)
649+
Also see |cmdline-ranges|.
650650

651651
See |:s_flags| for [flags].
652652
The delimiter doesn't need to be /, see

en/cmdline.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim version 9.0. Last change: 2023 May 20
1+
*cmdline.txt* For Vim version 9.0. Last change: 2023 Nov 15
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -362,6 +362,7 @@ terminals)
362362
A positive number represents the absolute index of an entry
363363
as it is given in the first column of a :history listing.
364364
This number remains fixed even if other entries are deleted.
365+
(see |E1510|)
365366

366367
A negative number means the relative position of an entry,
367368
counted from the newest entry (which has index -1) backwards.

en/vim9.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ func({type}) function with argument type, does not return
14881488
func({type}): {type} function with argument type and return type
14891489
func(?{type}) function with type of optional argument, does
14901490
not return a value
1491-
(...list<{type}>) function with type of list for variable number
1491+
func(...list<{type}>) function with type of list for variable number
14921492
of arguments, does not return a value
14931493
func({type}, ?{type}, ...list<{type}>): {type}
14941494
function with:

0 commit comments

Comments
 (0)