Skip to content

Update builtin.{txt,jax} #2035

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions doc/builtin.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Mar 30
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Apr 18


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -8010,8 +8010,9 @@ printf({fmt}, {expr1} ...) *printf()*
echo printf("%1$*2$.*3$f", 1.4142135, 6, 2)
< 1.41

フィールド幅もしくは精度が 6400 文字より長い文字列になる場合
は、オーバーフローエラー |E1510| を得るだろう。
フィールド幅または精度によって 1 MiB (1024*1024 = 1048576) 文
字を超える文字列が生成されると、オーバーフローエラー |E1510|
が発生する。

*E1500*
位置引数と非位置引数を混在させることはできない: >
Expand Down
5 changes: 3 additions & 2 deletions en/builtin.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim version 9.1. Last change: 2025 Mar 30
*builtin.txt* For Vim version 9.1. Last change: 2025 Apr 18


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -8158,7 +8158,8 @@ printf({fmt}, {expr1} ...) *printf()*
< 1.41

You will get an overflow error |E1510|, when the field-width
or precision will result in a string longer than 6400 chars.
or precision will result in a string longer than 1 MiB
(1024*1024 = 1048576) chars.

*E1500*
You cannot mix positional and non-positional arguments: >
Expand Down