Skip to content

Commit 62a54ed

Browse files
authored
Merge pull request #2506 from h-east/update-version9
Update version9.{txt,jax}
2 parents 0132dfa + a9bc854 commit 62a54ed

2 files changed

Lines changed: 56 additions & 10 deletions

File tree

doc/version9.jax

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim バージョン 9.2. Last change: 2026 Feb 14
1+
*version9.txt* For Vim バージョン 9.2. Last change: 2026 Feb 16
22

33

44
VIM リファレンスマニュアル by Bram Moolenaar
@@ -38,6 +38,11 @@ Vim 9 へようこそ! 前回のリリースから数年が経過した。
3838
追加要素 |added-9.2|
3939
パッチ |patches-9.2|
4040

41+
バージョン 9.3 |version-9.3|
42+
変更点 |changed-9.3|
43+
追加要素 |added-9.3|
44+
パッチ |patches-9.3|
45+
4146

4247
Vi と Vim 9.0 の違いの概要については |vi_diff.txt| を参照。
4348
Vim のバージョン間の違いについては |version4.txt|, |version5.txt|,
@@ -31680,7 +31685,7 @@ Files: runtime/makemenu.vim
3168031685

3168131686

3168231687
==============================================================================
31683-
VERSION 9.1 *version-9.1* *version9.1* *vim-9.1*
31688+
☆バージョン 9.1 *version-9.1* *version9.1* *vim-9.1*
3168431689

3168531690
このセクションでは、バージョン 9.0 と 9.1 の間の改善点について説明する。
3168631691
リリース 9.1 は Vim の慈悲深い終身独裁者 |Bram-Moolenaar| 氏に捧げられる。
@@ -41536,10 +41541,9 @@ Problem: proto files need update
4153641541
Solution: re-generate them
4153741542

4153841543
==============================================================================
41539-
VERSION 9.2 *version-9.2* *version9.2* *vim-9.2*
41544+
☆バージョン 9.2 *version-9.2* *version9.2* *vim-9.2*
4154041545

41541-
このセクションでは、バージョン 9.1 と 9.2 の間の改善点について説明しており、現
41542-
在進行中である。
41546+
このセクションでは、バージョン 9.1 と 9.2 の間の改善点について説明している。
4154341547

4154441548
Vim9 script ~
4154541549
-----------
@@ -41737,7 +41741,8 @@ Ex コマンド: ~
4173741741
quickfix リスト内の現在の選択を保持しようとすることができる。
4173841742
- ローカルの Vim script 変数を Python インタープリターに渡すことができる
4173941743
|py3eval()|
41740-
- |getwininfo()| はウィンドウの "leftcol" プロパティも返すようになった
41744+
- |getwininfo()| はウィンドウの "leftcol" および "status_height" プロパティも
41745+
返すようになった
4174141746
- |v:stacktrace| 最後にキャッチされて終了していない例外のスタックトレース
4174241747
- オプションの {opts} |Dict| 引数を |getchar()| に追加して、カーソルの動作、戻
4174341748
り値の型、返されるキーを簡略化するかどうかを制御する
@@ -52558,4 +52563,22 @@ Problem: [security]: Buffer overflow in netbeans special_keys() handling
5255852563
Solution: Limit writing to max KEYBUFLEN bytes to prevent writing out of
5255952564
bounds.
5256052565

52566+
==============================================================================
52567+
☆バージョン 9.3 *version-9.3* *version9.3* *vim-9.3*
52568+
52569+
This section is about improvements made between version 9.2 and 9.3 and is
52570+
work in progress.
52571+
52572+
*changed-9.3*
52573+
変更点~
52574+
------
52575+
52576+
*added-9.3*
52577+
追加要素 ~
52578+
--------
52579+
52580+
==============================================================================
52581+
☆パッチ *patches-9.3* *bug-fixes-9.3*
52582+
*patches-after-9.2*
52583+
5256152584
vim:tw=78:ts=8:noet:ft=help:norl:fdm=manual:nofoldenable

en/version9.txt

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*version9.txt* For Vim version 9.2. Last change: 2026 Feb 14
1+
*version9.txt* For Vim version 9.2. Last change: 2026 Feb 16
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -39,6 +39,11 @@ VERSION 9.2 |version-9.2|
3939
Added |added-9.2|
4040
Patches |patches-9.2|
4141

42+
VERSION 9.3 |version-9.3|
43+
Changed |changed-9.3|
44+
Added |added-9.3|
45+
Patches |patches-9.3|
46+
4247

4348
See |vi_diff.txt| for an overview of differences between Vi and Vim 9.0.
4449
See |version4.txt|, |version5.txt|, |version6.txt|, |version7.txt| and
@@ -41546,8 +41551,7 @@ Solution: re-generate them
4154641551
==============================================================================
4154741552
VERSION 9.2 *version-9.2* *version9.2* *vim-9.2*
4154841553

41549-
This section is about improvements made between version 9.1 and 9.2
41550-
and is a work in progress.
41554+
This section is about improvements made between version 9.1 and 9.2.
4155141555

4155241556
Vim9 script ~
4155341557
-----------
@@ -41750,7 +41754,8 @@ Functions: ~
4175041754
- |setqflist()| and |setloclist()| can optionally try to preserve the current
4175141755
selection in the quickfix list with the "u" action.
4175241756
- allow to pass local Vim script variables to python interpreter |py3eval()|
41753-
- |getwininfo()| now also returns the "leftcol" property for a window
41757+
- |getwininfo()| now also returns the "leftcol" and "status_height" properties
41758+
for a window
4175441759
- |v:stacktrace| The stack trace of the exception most recently caught and
4175541760
not finished
4175641761
- Add the optional {opts} |Dict| argument to |getchar()| to control: cursor
@@ -52571,4 +52576,22 @@ Problem: [security]: Buffer overflow in netbeans special_keys() handling
5257152576
Solution: Limit writing to max KEYBUFLEN bytes to prevent writing out of
5257252577
bounds.
5257352578

52579+
==============================================================================
52580+
VERSION 9.3 *version-9.3* *version9.3* *vim-9.3*
52581+
52582+
This section is about improvements made between version 9.2 and 9.3 and is
52583+
work in progress.
52584+
52585+
*changed-9.3*
52586+
Changed~
52587+
-------
52588+
52589+
*added-9.3*
52590+
Added ~
52591+
-----
52592+
52593+
==============================================================================
52594+
PATCHES *patches-9.3* *bug-fixes-9.3*
52595+
*patches-after-9.2*
52596+
5257452597
vim:tw=78:ts=8:noet:ft=help:norl:fdm=manual:nofoldenable

0 commit comments

Comments
 (0)