Skip to content

Commit f2bfaa4

Browse files
authored
Merge pull request #1602 from vim-jp/hh-update-version9
Update version9.{txt,jax}
2 parents ceced2b + 4ac1e19 commit f2bfaa4

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

doc/version9.jax

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

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -41546,7 +41546,7 @@ Vim9 script の列挙型サポート |:enum|
4154641546
*new-other-9.2*
4154741547
その他の新機能 ~
4154841548
--------------
41549-
コメントプラグイン |comment-install| を同梱。
41549+
新しいプラグイン |comment-install| および |nohlsearch-install| を同梱。
4155041550

4155141551
Wayland UI のサポート
4155241552

@@ -41555,6 +41555,9 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4155541555
|ins-completion-menu| の挿入モード補完およびコマンドライン補完でマッチしたテキ
4155641556
ストのハイライトをサポート。
4155741557

41558+
|gettext()| および |bindtextdomain()| 関数を使用して Vim script プラグインで
41559+
メッセージを翻訳するためのサポート。
41560+
4155841561
*changed-9.2*
4155941562
変更点 ~
4156041563
------
@@ -41574,6 +41577,7 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4157441577

4157541578
関数: ~
4157641579

41580+
|bindtextdomain()| メッセージの翻訳検索のベースパスを設定する
4157741581
|diff()| 2 つの文字列のリストの差分
4157841582
|filecopy()| ファイル {from} を {to} にコピー
4157941583
|foreach()| リストの項目に関数を適用
@@ -41586,6 +41590,7 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4158641590

4158741591
自動コマンド: ~
4158841592

41593+
|CursorMovedC| コマンドラインでカーソルが移動された後
4158941594
|SessionWritePost| セッションファイルを書き込んだ後 |:mksession|
4159041595
|TermResponseAll| 't_RV' 等に対する端末応答を受信した後
4159141596
|WinNewPre| 新しいウィンドウを作成する前
@@ -41628,8 +41633,8 @@ XDG デスクトップ仕様 |xdg-base-dir| のサポート
4162841633

4162941634
OpenVMS での Python3 のサポート。
4163041635

41631-
'completeopt' "fuzzy" 項目で、|ins-completion| 時の |fuzzy-matching| をサ
41632-
ポート。
41636+
'completeopt' 設定の "fuzzy" および "fuzzycollect" 値を使用した
41637+
|ins-completion| 時の |fuzzy-matching| をサポート
4163341638

4163441639
==============================================================================
4163541640
☆コンパイル時の変更 *compile-changes-9.2*
@@ -41638,6 +41643,8 @@ Ruby 3.3 でのビルドのサポート。
4163841643

4163941644
z/OS (MVS) での Vim 9 のビルドのサポート。
4164041645

41646+
古い MS-Windows のコードをクリーンアップ。
41647+
4164141648
==============================================================================
4164241649
☆パッチ *patches-9.2* *bug-fixes-9.2*
4164341650
*patches-after-9.1*

en/version9.txt

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

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -41554,7 +41554,7 @@ Enum support for Vim9 script |:enum|
4155441554
*new-other-9.2*
4155541555
Other new features ~
4155641556
------------------
41557-
The comment plugin |comment-install| is included.
41557+
The new plugins |comment-install| and |nohlsearch-install| are included.
4155841558

4155941559
Support for Wayland UI.
4156041560

@@ -41563,6 +41563,9 @@ Support for the XDG Desktop Specification |xdg-base-dir|
4156341563
Support highlighting the matched text for insert-mode completion and
4156441564
command-line completion in |ins-completion-menu|.
4156541565

41566+
Support for translating messages in Vim script plugins using the |gettext()|
41567+
and |bindtextdomain()| functions.
41568+
4156641569
*changed-9.2*
4156741570
Changed~
4156841571
-------
@@ -41579,6 +41582,7 @@ Various syntax, indent and other plugins were added.
4157941582

4158041583
Functions: ~
4158141584

41585+
|bindtextdomain()| set message lookup translation base path
4158241586
|diff()| diff two Lists of strings
4158341587
|filecopy()| copy a file {from} to {to}
4158441588
|foreach()| apply function to List items
@@ -41591,6 +41595,7 @@ Functions: ~
4159141595

4159241596
Autocommands: ~
4159341597

41598+
|CursorMovedC| after the cursor was moved in the comamnd-line
4159441599
|SessionWritePost| after writing the session file |:mksession|
4159541600
|TermResponseAll| after the terminal response to |t_RV| and others is
4159641601
received
@@ -41634,7 +41639,8 @@ Improved visual highlighting.
4163441639

4163541640
Python3 support in OpenVMS.
4163641641

41637-
Support |fuzzy-matching| during |ins-completion| with "fuzzy" item for 'completeopt'
41642+
Support for |fuzzy-matching| during |ins-completion| with the "fuzzy" and
41643+
"fuzzycollect" values of the 'completeopt' setting
4163841644

4163941645
==============================================================================
4164041646
COMPILE TIME CHANGES *compile-changes-9.2*
@@ -41643,6 +41649,8 @@ Support for building with Ruby 3.3.
4164341649

4164441650
Support for building Vim 9 in z/OS (MVS).
4164541651

41652+
Clean-up old MS-Windows code.
41653+
4164641654
==============================================================================
4164741655
PATCHES *patches-9.2* *bug-fixes-9.2*
4164841656
*patches-after-9.1*

0 commit comments

Comments
 (0)