Skip to content

Commit 95b94e7

Browse files
committed
Update by original
1 parent f7cf4be commit 95b94e7

File tree

2 files changed

+25
-12
lines changed

2 files changed

+25
-12
lines changed

doc/version9.jax

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim バージョン 9.1. Last change: 2025 Mar 23
1+
*version9.txt* For Vim バージョン 9.1. Last change: 2025 Mar 27
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -41545,6 +41545,14 @@ Vim9 script の列挙型サポート |:enum|
4154541545

4154641546
protected _new() メソッドのサポート
4154741547

41548+
差分モード~
41549+
-----------
41550+
'diffopt' 設定に "linematch" アルゴリズムを含める。これにより、類似の行のバッ
41551+
ファ間の変更が揃えられ、Vim での diff のハイライトが改善される
41552+
41553+
行内の変更の差分ハイライトを改善する。'diffopt' 設定の "inline" サブオプション
41554+
値を使用して構成可能で、"inline:simple" がデフォルトの "diffopt" 値に追加され
41555+
る (ただし、これは差分モードの動作を変更しない)。
4154841556
*new-other-9.2*
4154941557
その他の新機能 ~
4155041558
--------------
@@ -41561,9 +41569,6 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4156141569
|ins-completion-menu| で、挿入モード補完とコマンドライン補完の一致したテキスト
4156241570
と補完の種類のハイライトをサポートする。|complete-items| を参照
4156341571

41564-
'diffopt' 設定に "linematch" アルゴリズムを含める。これにより、類似の行のバッ
41565-
ファ間の変更が揃えられ、Vim での diff のハイライトが改善される
41566-
4156741572
Vim script および Vim9 script での |Tuple| データ型のサポート。
4156841573

4156941574
*changed-9.2*
@@ -41580,7 +41585,6 @@ Vim script および Vim9 script での |Tuple| データ型のサポート。
4158041585
- 'keyprotocol' オプションのデフォルト値は、ghostty 端末エミュレータ (kitty プ
4158141586
ロトコルを使用) のサポートにより更新された
4158241587

41583-
4158441588
補完: ~
4158541589
- |:cd| や同様のコマンドで 'cdpath' からディレクトリを補完できるように、
4158641590
|:command-complete| や |getcompletion()| 等に "cd_in_path" 補完タイプを追加
@@ -41612,6 +41616,7 @@ Vim script および Vim9 script での |Tuple| データ型のサポート。
4161241616
- 'rulerformat' は |stl-%!| 項目をサポートするようになった
4161341617
- ページ単位のスクロールには CTRL-F / CTRL-B で、また、半ページ単位のスクロー
4161441618
ルには CTRL-D / CTRL-U で 'smoothscroll' ロジックを使用する。
41619+
- 'pummaxwidth' 補完ポップアップメニューの最大幅
4161541620

4161641621
Ex コマンド: ~
4161741622
- 新しい目印を定義するときに優先順位を指定できるようにする |:sign-define|
@@ -41693,6 +41698,7 @@ Ex コマンド: ~
4169341698
ハイライト: ~
4169441699

4169541700
|hl-ComplMatchIns| 現在挿入されている補完にマッチするテキスト
41701+
|hl-DiffTextAdd| 変更された行に追加されたテキスト
4169641702
|hl-MsgArea| コマンドラインとメッセージ領域のハイライト
4169741703
|hl-PmenuMatch| ポップアップメニュー: マッチしたテキストのハイライト
4169841704
|hl-PmenuMatchSel| ポップアップメニュー: 選択された行のマッチしたテキスト

en/version9.txt

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim version 9.1. Last change: 2025 Mar 23
1+
*version9.txt* For Vim version 9.1. Last change: 2025 Mar 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41553,6 +41553,16 @@ Enum support for Vim9 script |:enum|
4155341553

4155441554
Support for protected _new() method
4155541555

41556+
Diff mode ~
41557+
---------
41558+
Include the "linematch" algorithm for the 'diffopt' setting. This aligns
41559+
changes between buffers on similar lines improving the diff highlighting in
41560+
Vim
41561+
41562+
Improve the diff highlighting for changes within a line. Configurable using
41563+
the "inline" sub option value for the 'diffopt' setting, with "inline:simple"
41564+
being added to the default "diffopt" value (but this does not change how diff
41565+
mode works).
4155641566
*new-other-9.2*
4155741567
Other new features ~
4155841568
------------------
@@ -41570,10 +41580,6 @@ Support highlighting the matched text and the completion kind for insert-mode
4157041580
completion and command-line completion in |ins-completion-menu|, see
4157141581
|complete-items|
4157241582

41573-
Include the "linematch" algorithm for the 'diffopt' setting. This aligns
41574-
changes between buffers on similar lines improving the diff highlighting in
41575-
Vim
41576-
4157741583
Support for the |Tuple| data type in Vim script and Vim9 script.
4157841584

4157941585
*changed-9.2*
@@ -41590,7 +41596,6 @@ Default values: ~
4159041596
- the default value of the 'keyprotocol' option has been updated and support
4159141597
for the ghostty terminal emulator (using kitty protocol) has been added
4159241598

41593-
4159441599
Completion: ~
4159541600
- allow to complete directories from 'cdpath' for |:cd| and similar commands,
4159641601
add the "cd_in_path" completion type for e.g. |:command-complete| and
@@ -41622,6 +41627,7 @@ Options: ~
4162241627
- 'rulerformat' now supports the |stl-%!| item
4162341628
- use 'smoothscroll' logic for CTRL-F / CTRL-B for pagewise scrolling
4162441629
and CTRL-D / CTRL-U for half-pagewise scrolling
41630+
- 'pummaxwidth' maximum width for the completion popup menu
4162541631

4162641632
Ex commands: ~
4162741633
- allow to specify a priority when defining a new sign |:sign-define|
@@ -41702,7 +41708,8 @@ Autocommands: ~
4170241708

4170341709
Highlighting: ~
4170441710

41705-
|hl-ComplMatchIns| matched text of the currently inserted completion.
41711+
|hl-ComplMatchIns| matched text of the currently inserted completion
41712+
|hl-DiffTextAdd| added text within a changed line
4170641713
|hl-MsgArea| highlighting of the Command-line and messages area
4170741714
|hl-PmenuMatch| Popup menu: highlighting of matched text
4170841715
|hl-PmenuMatchSel| Popup menu: highlighting of matched text in selected

0 commit comments

Comments
 (0)