Skip to content

Commit fd58f59

Browse files
committed
Update builtin.{txt,jax}
1 parent f4c69cf commit fd58f59

2 files changed

Lines changed: 16 additions & 10 deletions

File tree

doc/builtin.jax

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim バージョン 9.1. Last change: 2026 Jan 17
1+
*builtin.txt* For Vim バージョン 9.1. Last change: 2026 Feb 2
22

33

44
VIM リファレンスマニュアル by Bram Moolenaar
@@ -1438,6 +1438,9 @@ blob2str({blob} [, {options}]) *blob2str()*
14381438
<
14391439
戻り値の型: list<string>
14401440

1441+
`iconv` が使用できず、組み込みの変換ルールを使用してエンコー
1442+
ディングを変換できない場合は、エラーが報告される。
1443+
14411444

14421445
browse({save}, {title}, {initdir}, {default}) *browse()*
14431446
ファイル選択ダイアログを起動。"has("browse")" が|TRUE|を返すと
@@ -8690,7 +8693,7 @@ redraw_listener_add({opts}) *redraw_listener_add()*
86908693
戻り値の型: |Number|
86918694

86928695

8693-
redraw_listener_remove({id}) *redraw_listener_remove()*
8696+
redraw_listener_remove({id}) *redraw_listener_remove()*
86948697
|redraw_listener_add()| で以前に追加された再描画リスナーを削除
86958698
する。{id} が見つからなかった場合は FALSE を返し、{id} が削除
86968699
された場合は TRUE を返す。
@@ -12312,7 +12315,7 @@ win_findbuf({bufnr}) *win_findbuf()*
1231212315
|method| としても使用できる: >
1231312316
GetBufnr()->win_findbuf()
1231412317
<
12315-
戻り値の型: list<number> または list<any>
12318+
戻り値の型: list<number>
1231612319

1231712320

1231812321
win_getid([{win} [, {tab}]]) *win_getid()*

en/builtin.txt

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*builtin.txt* For Vim version 9.1. Last change: 2026 Jan 17
1+
*builtin.txt* For Vim version 9.1. Last change: 2026 Feb 2
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1389,6 +1389,9 @@ blob2str({blob} [, {options}]) *blob2str()*
13891389
Can also be used as a |method|: >
13901390
GetBlob()->blob2str()
13911391
<
1392+
If `iconv` is not available and the encoding cannot be converted
1393+
using built-in conversion rules, an error will be reported.
1394+
13921395
Return type: list<string>
13931396

13941397

@@ -7979,8 +7982,8 @@ nr2char({expr} [, {utf8}]) *nr2char()*
79797982
value {expr}. Examples: >
79807983
nr2char(64) returns "@"
79817984
nr2char(32) returns " "
7982-
< When {utf8} is omitted or zero, the current 'encoding' is used.
7983-
Example for "utf-8": >
7985+
< When {utf8} is omitted or zero, the current 'encoding' is
7986+
used. Example for "utf-8": >
79847987
nr2char(300) returns I with bow character
79857988
< When {utf8} is TRUE, always return UTF-8 characters.
79867989
Note that a NUL character in the file is specified with
@@ -8863,7 +8866,7 @@ redraw_listener_add({opts}) *redraw_listener_add()*
88638866
Return type: |Number|
88648867

88658868

8866-
redraw_listener_remove({id}) *redraw_listener_remove()*
8869+
redraw_listener_remove({id}) *redraw_listener_remove()*
88678870
Remove a redraw listener previously added with
88688871
|redraw_listener_add()|. Returns FALSE when {id} could not be
88698872
found, TRUE when {id} was removed.
@@ -12609,8 +12612,7 @@ win_findbuf({bufnr}) *win_findbuf()*
1260912612
Can also be used as a |method|: >
1261012613
GetBufnr()->win_findbuf()
1261112614
<
12612-
Return type: list<number> or list<any>
12613-
12615+
Return type: list<number>
1261412616

1261512617
win_getid([{win} [, {tab}]]) *win_getid()*
1261612618
Get the |window-ID| for the specified window.
@@ -12656,7 +12658,8 @@ win_gettype([{nr}]) *win_gettype()*
1265612658
win_gotoid({expr}) *win_gotoid()*
1265712659
Go to window with ID {expr}. This may also change the current
1265812660
tabpage.
12659-
Return TRUE if successful, FALSE if the window cannot be found.
12661+
Return TRUE if successful, FALSE if the window cannot be
12662+
found.
1266012663

1266112664
Can also be used as a |method|: >
1266212665
GetWinid()->win_gotoid()

0 commit comments

Comments
 (0)