Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update autocmd.{txt,jax} #1995

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion doc/autocmd.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*autocmd.txt* For Vim バージョン 9.1. Last change: 2025 Mar 08
*autocmd.txt* For Vim バージョン 9.1. Last change: 2025 Mar 12


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -393,6 +393,7 @@ Vimは以下のイベントを認識する。イベント名が大文字か小
|TabNew| 新しいタブページを作成した後
|WinClosed| ウィンドウを閉じた後
|TabClosed| タブページを閉じた後
|TabClosedPre| タブページを閉じる前
|WinEnter| 別のウィンドウに入った後
|WinLeave| ウィンドウから離れる前
|TabEnter| 別のタブページに入った後
Expand Down Expand Up @@ -1220,6 +1221,10 @@ Syntax オプション 'syntax' が設定されたとき。
|:syn-on| を参照。
*TabClosed*
TabClosed タブページを閉じた後。
*TabClosedPre*
TabClosedPre タブページを閉じる前。ウィンドウレイアウトが
ロックされ、ウィンドウのオープンおよびクローズ
が禁止される。
*TabEnter*
TabEnter タブページに入った直後 |tab-page|。WinEnterが
発生した後、BufEnterが発生する前。
Expand Down Expand Up @@ -1327,6 +1332,10 @@ TextYankPost カレントバッファでテキストがヤンクもしくは
び出された場合には発生しない。
バッファのテキストを変更することは許されていな
い、|textlock| を参照。 *E1064*
また、'guioptions' または 'clipboard' に
"autoselect" が設定されているために、Vim がビ
ジュアル選択の所有者になろうとしたときにも間接
的にトリガーされる。
{+eval 機能付きでコンパイルされた場合のみ有効}

*User*
Expand Down
11 changes: 10 additions & 1 deletion en/autocmd.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*autocmd.txt* For Vim version 9.1. Last change: 2025 Mar 08
*autocmd.txt* For Vim version 9.1. Last change: 2025 Mar 12


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -387,6 +387,7 @@ Name triggered by ~
|TabNew| after creating a new tab page
|WinClosed| after closing a window
|TabClosed| after closing a tab page
|TabClosedPre| before closing a tab page
|WinEnter| after entering another window
|WinLeave| before leaving a window
|TabEnter| after entering another tab page
Expand Down Expand Up @@ -1232,6 +1233,10 @@ Syntax When the 'syntax' option has been set. The
See |:syn-on|.
*TabClosed*
TabClosed After closing a tab page.
*TabClosedPre*
TabClosedPre Before closing a tab page. The window layout
is locked, thus opening and closing of windows
is prohibited.
*TabEnter*
TabEnter Just after entering a tab page. |tab-page|
After triggering the WinEnter and before
Expand Down Expand Up @@ -1346,6 +1351,10 @@ TextYankPost After text has been yanked or deleted in the
called recursively.
It is not allowed to change the buffer text,
see |textlock|. *E1064*
Also triggered indirectly when Vim tries to
become owner of the Visual selection because
of setting "autoselect" for 'guioptions' or
'clipboard'.
{only when compiled with the +eval feature}

*User*
Expand Down