Skip to content

Commit 43bf779

Browse files
authored
Merge pull request #2270 from h-east/update-version9
Update version9.{txt,jax}
2 parents 44234be + da113f9 commit 43bf779

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed

doc/version9.jax

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim バージョン 9.1. Last change: 2025 Aug 22
1+
*version9.txt* For Vim バージョン 9.1. Last change: 2025 Aug 24
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -41635,6 +41635,8 @@ Vim script および Vim9 script での |Tuple| データ型のサポート。
4163541635
- 構文スクリプトで使用するための新しいデフォルトのハイライトグループ "Bold"、
4163641636
"Italic" および "BoldItalic" を追加した。
4163741637

41638+
- |items()| 関数は Blob をサポートするようになった。
41639+
4163841640
*changed-9.2*
4163941641
変更点~
4164041642
------
@@ -41733,6 +41735,9 @@ Ex コマンド: ~
4173341735
"]>"。
4173441736
- クライアントサーバー機能に Unix ドメインソケットのサポートが追加された。
4173541737
|socketserver-clientserver| を参照。
41738+
- |CmdlineLeave| は、|v:char| をコマンドラインからの終了の原因となった文字に設
41739+
定する。
41740+
- |min()|/|max()| はすべての比較可能なデータ型を処理できる。
4173641741

4173741742
プラットフォーム固有 ~
4173841743
- MS-Windows: "\Windows" や "/Windows" などのパスは、相対パスではなく (現在の
@@ -41771,6 +41776,8 @@ Ex コマンド: ~
4177141776
|str2blob()| 文字列のリストを blob に変換する
4177241777
|test_null_tuple()| null の tuple を返す
4177341778
|tuple2list()| Tuple の項目をリストに変換する
41779+
|uri_decode()| 文字列を URI デコードする
41780+
|uri_encode()| 文字列を URI エンコードする
4177441781
|wildtrigger()| ワイルドカード展開をトリガーする
4177541782

4177641783

@@ -41813,11 +41820,13 @@ Ex コマンド: ~
4181341820

4181441821
'autocomplete' 自動補完を有効にする |ins-autocompletion|
4181541822
'autocompletedelay' 入力後にメニューが表示されるまでの遅延 (msec)
41823+
'autocompletetimeout' 自動補完アルゴリズムの初期減衰タイムアウト
4181641824
'chistory' quickfix スタックのサイズ |quickfix-stack|
4181741825
'clipmethod' クリップボードにアクセスする方法
4181841826
'completefuzzycollect' (一部の) |ins-completion| モード用のファジーな候補の収
4181941827
集を有効にする
4182041828
'completeitemalign' 挿入モード補完ポップアップでの |complete-items| の順序
41829+
'completetimeout' CTRL-N と CTRL-P の初期減衰タイムアウト
4182141830
'diffanchors' 差分の同期を強制する {address} のリスト
4182241831
'eventignorewin' ウィンドウ内で無視される自動コマンドイベント
4182341832
'findfunc' |:find| コマンドの結果を取得するための Vim の関数
@@ -41833,12 +41842,17 @@ Ex コマンド: ~
4183341842
'tabpanelopt' |tabpanel| のオプション設定
4183441843
't_xo' 端末は XON/XOFF ハンドシェイクを使用する (例: vt420)
4183541844
't_CF' 代替フォントハイライトの端末コードのサポート
41845+
't_Ms' OSC 52 のコマンド形式
4183641846
'winfixbuf' ウィンドウ内でバッファをフォーカスしたままにする
4183741847
'wlseat' |wayland| 機能に使用する Wayland シートを指定する
4183841848
'wlsteal' フォーカスを奪って |wayland| クリップボードにアクセス
4183941849
する
4184041850
'wltimeout' |wayland| コンポジタの接続タイムアウトを指定する
4184141851

41852+
Vim 変数: ~
41853+
|v:termda1| プライマリデバイス属性クエリ (DA1) に対して返されるエ
41854+
スケープシーケンス。
41855+
4184241856
Vim 引数: ~
4184341857
|-Y| |wayland| コンポジタに接続しない。
4184441858
|--clientserver| クライアントサーバー機能のバックエンドを指定する。

en/version9.txt

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim version 9.1. Last change: 2025 Aug 22
1+
*version9.txt* For Vim version 9.1. Last change: 2025 Aug 24
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41648,6 +41648,8 @@ Other new features ~
4164841648
- Add the new default highlighting groups "Bold", "Italic" and "BoldItalic"
4164941649
for use in syntax scripts.
4165041650

41651+
- |items()| function now supports Blob.
41652+
4165141653
*changed-9.2*
4165241654
Changed~
4165341655
-------
@@ -41748,6 +41750,9 @@ Others: ~
4174841750
ANGLE BRACKET "]>".
4174941751
- Support for Unix domain sockets have been added for the clientserver
4175041752
feature, see |socketserver-clientserver|.
41753+
- |CmdlineLeave| sets |v:char| to the character that caused exiting the
41754+
Command-line.
41755+
- |min()|/|max()| can handle all comparable data types.
4175141756

4175241757
Platform specific ~
4175341758
- MS-Winodws: Paths like "\Windows" and "/Windows" are now considered to be
@@ -41786,6 +41791,8 @@ Functions: ~
4178641791
|str2blob()| convert a List of strings into a blob
4178741792
|test_null_tuple()| return a null tuple
4178841793
|tuple2list()| turn a Tuple of items into a List
41794+
|uri_decode()| URI-decode a string
41795+
|uri_encode()| URI-encode a string
4178941796
|wildtrigger()| trigger wildcard expansion
4179041797

4179141798

@@ -41829,12 +41836,14 @@ Options: ~
4182941836

4183041837
'autocomplete' Enable auto completion |ins-autocompletion|
4183141838
'autocompletedelay' Delay in msec before menu appears after typing
41832-
'chistory' Size of the quickfix stack |quickfix-stack|.
41833-
'clipmethod' How to access the clipboard.
41839+
'autocompletetimeout' initial decay timeout for autocompletion algorithm
41840+
'chistory' Size of the quickfix stack |quickfix-stack|
41841+
'clipmethod' How to access the clipboard
4183441842
'completefuzzycollect' Enable fuzzy collection of candidates for (some)
4183541843
|ins-completion| modes
4183641844
'completeitemalign' Order of |complete-items| in Insert mode completion
4183741845
popup
41846+
'completetimeout' initial decay timeout for CTRL-N and CTRL-P
4183841847
'diffanchors' list of {address} to force syncing of diffs
4183941848
'eventignorewin' autocommand events that are ignored in a window
4184041849
'findfunc' Vim function to obtain the results for a |:find|
@@ -41851,12 +41860,17 @@ Options: ~
4185141860
'tabpanelopt' Optional settings for the |tabpanel|
4185241861
't_xo' Terminal uses XON/XOFF handshaking (e.g. vt420)
4185341862
't_CF' Support for alternate font highlighting terminal code
41863+
't_Ms' OSC 52 command format
4185441864
'winfixbuf' Keep buffer focused in a window
4185541865
'wlseat' Specify Wayland seat to use for the |wayland| feature
4185641866
'wlsteal' Steal focus to access the |wayland| clipboard
4185741867
'wltimeout' Specify the connection timeout for the |wayland|
4185841868
compositor
4185941869

41870+
Vim Variables: ~
41871+
|v:termda1| The escape sequence returned for the primary device
41872+
attribute query (DA1).
41873+
4186041874
Vim Arguments: ~
4186141875
|-Y| Do not connect to the |wayland| compositor.
4186241876
|--clientserver| Specify backend for clientserver functionality.

0 commit comments

Comments
 (0)