diff --git a/doc/version9.jax b/doc/version9.jax index 0cb1069f5..f74cd6408 100644 --- a/doc/version9.jax +++ b/doc/version9.jax @@ -1,4 +1,4 @@ -*version9.txt* For Vim バージョン 9.1. Last change: 2025 Aug 08 +*version9.txt* For Vim バージョン 9.1. Last change: 2025 Aug 12 VIMリファレンスマニュアル by Bram Moolenaar @@ -41709,6 +41709,8 @@ Ex コマンド: ~ - オプションの {opts} |Dict| 引数を |getchar()| に追加して、カーソルの動作、戻 り値の型、返されるキーを簡略化するかどうかを制御する - |chdir()| はオプションでスコープ引数を指定できる +- |matchfuzzy()| と |matchfuzzypos()| は改良されたファジーマッチングアルゴリズ + ム (fzy と同じ) を使用する。 その他: ~ - 正規表現エンジンは、大文字小文字を区別しないマルチバイト文字に正しくマッチす @@ -41722,6 +41724,7 @@ Ex コマンド: ~ - |gv| はオペレータ待機モードで動作し、中断しない。 - GUI 以外の 'tabline' に表示される閉じるボタンは、'mouse' オプションに "a" ま たはフラグ "n"、"v"、"i" のいずれかが含まれている場合にのみ表示される。 +- |C-indenting| は複合リテラルを処理する。 *added-9.2* 追加要素 ~ diff --git a/en/version9.txt b/en/version9.txt index 1052e7e51..281ae2d51 100644 --- a/en/version9.txt +++ b/en/version9.txt @@ -1,4 +1,4 @@ -*version9.txt* For Vim version 9.1. Last change: 2025 Aug 08 +*version9.txt* For Vim version 9.1. Last change: 2025 Aug 12 VIM REFERENCE MANUAL by Bram Moolenaar @@ -41723,6 +41723,8 @@ Functions: ~ - Add the optional {opts} |Dict| argument to |getchar()| to control: cursor behaviour, return type and whether or not to simplify the returned key - |chdir()| allows to optionally specify a scope argument +- |matchfuzzy()| and |matchfuzzypos()| use an improved fuzzy matching + algorithm (same as fzy). Others: ~ - the regex engines match correctly case-insensitive multi-byte characters @@ -41736,6 +41738,7 @@ Others: ~ - |gv| works in operator pending mode and does not abort - The close button shown in the non-GUI 'tabline' will only be visible if the 'mouse' option contains either "a" or any of the flags "n", "v", or "i". +- |C-indenting| handles compound literals. *added-9.2* Added ~