Skip to content

Commit 2a23987

Browse files
committed
Update version9.{txt,jax}
1 parent edfae9b commit 2a23987

File tree

2 files changed

+38
-6
lines changed

2 files changed

+38
-6
lines changed

doc/version9.jax

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim バージョン 9.1. Last change: 2024 Jun 20
1+
*version9.txt* For Vim バージョン 9.1. Last change: 2024 Jul 12
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -41569,6 +41569,18 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4156941569
- 'commentstring' のデフォルトには、自動コメントの見栄えを良くするための空白の
4157041570
パディングが含まれています |comment-install|
4157141571
- 'completeopt' は |global-local| オプションになりました。
41572+
- 'nrformat' は、マイナス記号の前の空白に基づいて符号付きまたは符号なしの数値
41573+
を決定する新しい "blank" サブオプションを受け付けます。
41574+
- 新しい目印を定義するときに優先順位を指定できるようにします |:sign-define|
41575+
- get(function, "arity") 関数を使用して関数の引数に関する情報を提供します
41576+
|get()-function|
41577+
- |:bwipe| はジャンプリストとタグスタックのデータも消去します
41578+
- |:bnext| や同様のコマンドを使用してバッファリスト内を移動すると、ドキュメン
41579+
トどおりに動作し、ヘルプバッファをスキップします (ヘルプバッファから実行され
41580+
ていない場合は、次/前のヘルプバッファに移動します)。
41581+
- |:cd| や同様のコマンドで 'cdpath' からディレクトリを補完できるように、
41582+
|:command-complete| や |getcompletion()| 等に "cd_in_path" 補完タイプを追加
41583+
します
4157241584

4157341585
*added-9.2*
4157441586
追加要素 ~
@@ -41583,6 +41595,8 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4158341595
|foreach()| リストの項目に関数を適用
4158441596
|getregion()| バッファからテキストの領域を取得
4158541597
|getregionpos()| 領域の位置をリストで取得
41598+
|id()| Dict、List、Object、Channel、または Blob 変数の一意の
41599+
識別子を取得
4158641600
|matchbufline()| バッファ内のすべてのパターンのマッチ
4158741601
|matchstrlist()| 文字列のリスト内のすべてのパターンのマッチ
4158841602
|popup_setbuf()| ポップアップを別のバッファに切り替える
@@ -41591,6 +41605,7 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4159141605
自動コマンド: ~
4159241606

4159341607
|CursorMovedC| コマンドラインでカーソルが移動された後
41608+
|KeyInputPre| 任意のモードで任意のキーイベントを処理
4159441609
|SessionWritePost| セッションファイルを書き込んだ後 |:mksession|
4159541610
|TermResponseAll| 't_RV' 等に対する端末応答を受信した後
4159641611
|WinNewPre| 新しいウィンドウを作成する前
@@ -41611,6 +41626,7 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4161141626
オプション: ~
4161241627

4161341628
'winfixbuf' ウィンドウ内でバッファをフォーカスしたままにする
41629+
'tabclose' タブページを閉じた後にフォーカスするタブページ
4161441630
't_xo' 端末は XON/XOFF ハンドシェイクを使用する (例: vt420)
4161541631
't_CF' 代替フォントハイライトの端末コードのサポート
4161641632

@@ -41633,8 +41649,8 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4163341649

4163441650
OpenVMS での Python3 のサポート。
4163541651

41636-
'completeopt' 設定の "fuzzy" および "fuzzycollect" 値を使用した
41637-
|ins-completion| 時の |fuzzy-matching| をサポート
41652+
'completeopt' 設定の "fuzzy" 値を使用した |ins-completion| 時の
41653+
|fuzzy-matching| をサポート
4163841654

4163941655
==============================================================================
4164041656
☆コンパイル時の変更 *compile-changes-9.2*

en/version9.txt

Lines changed: 19 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: 2024 Jun 20
1+
*version9.txt* For Vim version 9.1. Last change: 2024 Jul 12
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41574,6 +41574,18 @@ Changed~
4157441574
- the default for 'commentstring' contains whitespace padding to have
4157541575
automatic comments look nicer |comment-install|
4157641576
- 'completeopt' is now a |global-local| option.
41577+
- 'nrformat' accepts the new "blank" suboption, to determine a signed or
41578+
unsigned number based on whitespace in front of a minus sign.
41579+
- allow to specify a priority when defining a new sign |:sign-define|
41580+
- provide information about function arguments using the get(func, "arity")
41581+
function |get()-func|
41582+
- |:bwipe| also wipes jumplist and tagstack data
41583+
- moving in the buffer list using |:bnext| and similar commands, behaves as
41584+
documented and skips help buffers (if not run from a help buffer, else
41585+
moves to the next/previous help buffer).
41586+
- allow to complete directories from 'cdpath' for |:cd| and similar commands,
41587+
add the "cd_in_path" completion type for e.g. |:command-complete| and
41588+
|getcompletion()|
4157741589

4157841590
*added-9.2*
4157941591
Added ~
@@ -41588,6 +41600,8 @@ Functions: ~
4158841600
|foreach()| apply function to List items
4158941601
|getregion()| get a region of text from a buffer
4159041602
|getregionpos()| get a list of positions for a region
41603+
|id()| get unique identifier for a Dict, List, Object,
41604+
Channel or Blob variable
4159141605
|matchbufline()| all the matches of a pattern in a buffer
4159241606
|matchstrlist()| all the matches of a pattern in a List of strings
4159341607
|popup_setbuf()| switch to a different buffer in a popup
@@ -41596,6 +41610,7 @@ Functions: ~
4159641610
Autocommands: ~
4159741611

4159841612
|CursorMovedC| after the cursor was moved in the comamnd-line
41613+
|KeyInputPre| process any Key event in any mode
4159941614
|SessionWritePost| after writing the session file |:mksession|
4160041615
|TermResponseAll| after the terminal response to |t_RV| and others is
4160141616
received
@@ -41617,6 +41632,7 @@ Commands: ~
4161741632
Options: ~
4161841633

4161941634
'winfixbuf' Keep buffer focused in a window
41635+
'tabclose' Which tab page to focus after closing a tab page
4162041636
't_xo' Terminal uses XON/XOFF handshaking (e.g. vt420)
4162141637
't_CF' Support for alternate font highlighting terminal code
4162241638

@@ -41639,8 +41655,8 @@ Improved visual highlighting.
4163941655

4164041656
Python3 support in OpenVMS.
4164141657

41642-
Support for |fuzzy-matching| during |ins-completion| with the "fuzzy" and
41643-
"fuzzycollect" values of the 'completeopt' setting
41658+
Support for |fuzzy-matching| during |ins-completion| with the "fuzzy"
41659+
values of the 'completeopt' setting
4164441660

4164541661
==============================================================================
4164641662
COMPILE TIME CHANGES *compile-changes-9.2*

0 commit comments

Comments
 (0)