Skip to content

Commit 1b34fa1

Browse files
committed
update version9.{txt,jax}
1 parent 68fcafe commit 1b34fa1

File tree

2 files changed

+37
-12
lines changed

2 files changed

+37
-12
lines changed

doc/version9.jax

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim バージョン 9.1. Last change: 2025 Sep 18
1+
*version9.txt* For Vim バージョン 9.1. Last change: 2025 Sep 29
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -41696,6 +41696,9 @@ Vim script および Vim9 script での |Tuple| データ型のサポート。
4169641696
- 'rulerformat' は |stl-%!| 項目をサポートするようになった
4169741697
- ページ単位のスクロールには CTRL-F / CTRL-B で、また、半ページ単位のスクロー
4169841698
ルには CTRL-D / CTRL-U で 'smoothscroll' ロジックを使用する。
41699+
- モードラインで 'nowrap' を設定すると、長い行が画面外に隠れてしまう可能性があ
41700+
る。これを表示するには、listchars の "extend" サブオプションをデフォルトで
41701+
">" に設定し、ウィンドウ幅を超えるテキストを表示する。
4169941702

4170041703
Ex コマンド: ~
4170141704
- 新しい目印を定義するときに優先順位を指定できるようにする |:sign-define|
@@ -41722,6 +41725,19 @@ Ex コマンド: ~
4172241725
- |matchfuzzy()| と |matchfuzzypos()| は改良されたファジーマッチングアルゴリズ
4172341726
ム (fzy と同じ) を使用する。
4172441727
- |sha256()| は引数として |Blob| も受け入れる。
41728+
- |listener_add()| を使用すると、バッファリングされないリスナーを登録できるた
41729+
め、変更が発生するとすぐに処理される。
41730+
41731+
プラグイン~
41732+
- |zip| プラグインは PowerShell Core で動作する。
41733+
41734+
プラットフォーム固有 ~
41735+
- MS-Windows: "\Windows" や "/Windows" などのパスは、相対パスではなく (カレン
41736+
トドライブへの) 絶対パスとして扱われるようになった。
41737+
- MS-Windows: タイトルバーの背景は、|hl-Normal| ハイライトグループの背景色に従
41738+
う。
41739+
- macOS: デフォルトのスケジューラ優先度を TASK_DEFAULT_APPLICATION に引き上げ
41740+
た。
4172541741

4172641742
その他: ~
4172741743
- 正規表現エンジンは、大文字小文字を区別しないマルチバイト文字に正しくマッチす
@@ -41749,11 +41765,6 @@ Ex コマンド: ~
4174941765
- Vim は、すべてのターミナル OSC 値に対して |TermResponseAll| 自動コマンドをト
4175041766
リガーする。
4175141767

41752-
プラットフォーム固有 ~
41753-
- MS-Windows: "\Windows" や "/Windows" などのパスは、相対パスではなく (現在の
41754-
ドライブへの) 絶対パスとして扱われるようになった。
41755-
- macOS: デフォルトのスケジューラの優先度を TASK_DEFAULT_APPLICATION に上げる。
41756-
4175741768
*added-9.2*
4175841769
追加要素 ~
4175941770
--------
@@ -41784,6 +41795,8 @@ Ex コマンド: ~
4178441795
|matchstrlist()| 文字列のリスト内のすべてのパターンのマッチ
4178541796
|ngettext()| 単一/複数の翻訳メッセージの検索
4178641797
|popup_setbuf()| ポップアップを別のバッファに切り替える
41798+
|preinserted()| 補完中に事前挿入テキストが挿入されたかどうか
41799+
('completeopt' を参照)
4178741800
|str2blob()| 文字列のリストを blob に変換する
4178841801
|test_null_tuple()| null の tuple を返す
4178941802
|tuple2list()| Tuple の項目をリストに変換する

en/version9.txt

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim version 9.1. Last change: 2025 Sep 18
1+
*version9.txt* For Vim version 9.1. Last change: 2025 Sep 29
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41710,6 +41710,9 @@ Options: ~
4171041710
- 'rulerformat' now supports the |stl-%!| item
4171141711
- use 'smoothscroll' logic for CTRL-F / CTRL-B for pagewise scrolling
4171241712
and CTRL-D / CTRL-U for half-pagewise scrolling
41713+
- Setting 'nowrap' in a modeline could cause long lines to be hidden
41714+
off-screen. To make this visible, the listchars "extend" suboption is set
41715+
to ">" by default, indicating text that extends beyond the window width.
4171341716

4171441717
Ex commands: ~
4171541718
- allow to specify a priority when defining a new sign |:sign-define|
@@ -41736,6 +41739,18 @@ Functions: ~
4173641739
- |matchfuzzy()| and |matchfuzzypos()| use an improved fuzzy matching
4173741740
algorithm (same as fzy).
4173841741
- |sha256()| also accepts a |Blob| as argument.
41742+
- |listener_add()| allows to register un-buffered listeners, so that changes
41743+
are handled as soon as they happen.
41744+
41745+
Plugins~
41746+
- |zip| plugin works with PowerShell Core.
41747+
41748+
Platform specific ~
41749+
- MS-Winodws: Paths like "\Windows" and "/Windows" are now considered to be
41750+
absolute paths (to the current drive) and no longer relative.
41751+
- MS-Windows: The title bar background follows the |hl-Normal| highlighting
41752+
group background color.
41753+
- macOS: increase default scheduler priority to TASK_DEFAULT_APPLICATION.
4173941754

4174041755
Others: ~
4174141756
- the regex engines match correctly case-insensitive multi-byte characters
@@ -41763,11 +41778,6 @@ Others: ~
4176341778
- |min()|/|max()| can handle all comparable data types.
4176441779
- Vim triggers the |TermResponseAll| autocommand for any terminal OSC value.
4176541780

41766-
Platform specific ~
41767-
- MS-Winodws: Paths like "\Windows" and "/Windows" are now considered to be
41768-
absolute paths (to the current drive) and no longer relative.
41769-
- macOS: increase default scheduler priority to TASK_DEFAULT_APPLICATION.
41770-
4177141781
*added-9.2*
4177241782
Added ~
4177341783
-----
@@ -41798,6 +41808,8 @@ Functions: ~
4179841808
|matchstrlist()| all the matches of a pattern in a List of strings
4179941809
|ngettext()| lookup single/plural message translation
4180041810
|popup_setbuf()| switch to a different buffer in a popup
41811+
|preinserted()| whether preinserted text has been inserted during
41812+
completion (see 'completeopt')
4180141813
|str2blob()| convert a List of strings into a blob
4180241814
|test_null_tuple()| return a null tuple
4180341815
|tuple2list()| turn a Tuple of items into a List

0 commit comments

Comments
 (0)