|
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 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -1389,6 +1389,9 @@ blob2str({blob} [, {options}]) *blob2str()* |
1389 | 1389 | Can also be used as a |method|: > |
1390 | 1390 | GetBlob()->blob2str() |
1391 | 1391 | < |
| 1392 | + If `iconv` is not available and the encoding cannot be converted |
| 1393 | + using built-in conversion rules, an error will be reported. |
| 1394 | + |
1392 | 1395 | Return type: list<string> |
1393 | 1396 |
|
1394 | 1397 |
|
@@ -7979,8 +7982,8 @@ nr2char({expr} [, {utf8}]) *nr2char()* |
7979 | 7982 | value {expr}. Examples: > |
7980 | 7983 | nr2char(64) returns "@" |
7981 | 7984 | 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": > |
7984 | 7987 | nr2char(300) returns I with bow character |
7985 | 7988 | < When {utf8} is TRUE, always return UTF-8 characters. |
7986 | 7989 | Note that a NUL character in the file is specified with |
@@ -8863,7 +8866,7 @@ redraw_listener_add({opts}) *redraw_listener_add()* |
8863 | 8866 | Return type: |Number| |
8864 | 8867 |
|
8865 | 8868 |
|
8866 | | -redraw_listener_remove({id}) *redraw_listener_remove()* |
| 8869 | +redraw_listener_remove({id}) *redraw_listener_remove()* |
8867 | 8870 | Remove a redraw listener previously added with |
8868 | 8871 | |redraw_listener_add()|. Returns FALSE when {id} could not be |
8869 | 8872 | found, TRUE when {id} was removed. |
@@ -12609,8 +12612,7 @@ win_findbuf({bufnr}) *win_findbuf()* |
12609 | 12612 | Can also be used as a |method|: > |
12610 | 12613 | GetBufnr()->win_findbuf() |
12611 | 12614 | < |
12612 | | - Return type: list<number> or list<any> |
12613 | | - |
| 12615 | + Return type: list<number> |
12614 | 12616 |
|
12615 | 12617 | win_getid([{win} [, {tab}]]) *win_getid()* |
12616 | 12618 | Get the |window-ID| for the specified window. |
@@ -12656,7 +12658,8 @@ win_gettype([{nr}]) *win_gettype()* |
12656 | 12658 | win_gotoid({expr}) *win_gotoid()* |
12657 | 12659 | Go to window with ID {expr}. This may also change the current |
12658 | 12660 | 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. |
12660 | 12663 |
|
12661 | 12664 | Can also be used as a |method|: > |
12662 | 12665 | GetWinid()->win_gotoid() |
|
0 commit comments