Skip to content
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

Update builtin.{txt,jax} #2000

Merged
merged 1 commit into from
Mar 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
9 changes: 7 additions & 2 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 11
*builtin.txt* For Vim バージョン 9.1. Last change: 2025 Mar 18


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -1378,7 +1378,7 @@ blob2str({blob} [, {options}]) *blob2str()*
ト列をデコードする。値は |String| である。サ
ポートされている値については |encoding-names|
を参照 (および特殊値 "none")。
*E1515*
*E1515* *E1516*
現在の 'encoding' が "utf-8" の場合、{blob} で無効なバイトシー
ケンスが検出されるとエラーが発生し、空のリストが返される。この
検証を抑制して無効な可能性のある文字列を取得するには、{options}
Expand Down Expand Up @@ -4961,6 +4961,8 @@ getregionpos({pos1}, {pos2} [, {opts}]) *getregionpos()*
|method| としても使用できる: >
getpos('.')->getregionpos(getpos("'a"))
<
例については、highlight-yank プラグインを参照。|52.6|

戻り値の型: list<list<list<number>>>


Expand Down Expand Up @@ -7170,6 +7172,9 @@ matchfuzzy({list}, {str} [, {dict}]) *matchfuzzy()*
{str} 内の文字を含むマッチのみを返す。
limit 返される {list} 内のマッチの最大数。ゼロは制限
がないことを意味する。
camelcase 拡張されたキャメルケーススコアリングを使用し
て、プログラミング言語に関連する補完に適した結
果を作成する。デフォルトは v:true である。

{list} が辞書のリストなら、オプションの {dict} 引数では追加で
以下の項目がサポートされる:
Expand Down
9 changes: 7 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 11
*builtin.txt* For Vim version 9.1. Last change: 2025 Mar 18


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -1311,7 +1311,7 @@ blob2str({blob} [, {options}]) *blob2str()*
encoding. The value is a |String|. See
|encoding-names| for the supported values
(plus the special value "none").
*E1515*
*E1515* *E1516*
When current 'encoding' is "utf-8", an error is given and an
empty List is returned if an invalid byte sequence is
encountered in {blob}. To suppress this validation and get
Expand Down Expand Up @@ -4998,6 +4998,8 @@ getregionpos({pos1}, {pos2} [, {opts}]) *getregionpos()*
Can also be used as a |method|: >
getpos('.')->getregionpos(getpos("'a"))
<
For an example, see the highlight-yank plugin |52.6|

Return type: list<list<list<number>>>


Expand Down Expand Up @@ -7275,6 +7277,9 @@ matchfuzzy({list}, {str} [, {dict}]) *matchfuzzy()*
given sequence.
limit Maximum number of matches in {list} to be
returned. Zero means no limit.
camelcase Use enhanced camel case scoring making results
better suited for completion related to
programming languages. Defaults to v:true.

If {list} is a list of dictionaries, then the optional {dict}
argument supports the following additional items:
Expand Down