Skip to content
Merged
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
10 changes: 7 additions & 3 deletions doc/autocmd.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*autocmd.txt* For Vim バージョン 9.2. Last change: 2026 Feb 14
*autocmd.txt* For Vim バージョン 9.2. Last change: 2026 Feb 25


VIM リファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -438,6 +438,7 @@ Vimは以下のイベントを認識する。イベント名が大文字か小
|QuickFixCmdPre| QuickFixコマンドを実行する前
|QuickFixCmdPost| QuickFixコマンドを実行した後

|SessionLoadPre| セッションファイルを読み込む前
|SessionLoadPost| セッションファイルを読み込んだ後

|SessionWritePost| |:mksession| コマンドを使用してセッションファイルを書
Expand Down Expand Up @@ -1165,9 +1166,12 @@ SafeStateAgain SafeState に似ているが、メッセージを処理し、
ガーされる可能性があるので、時間がかかるような
ことはしないこと。

*SessionLoadPre*
SessionLoadPre |:mksession| コマンドを使用して作成されたセッ
ションファイルを読み込む前。
*SessionLoadPost*
SessionLoadPost |:mksession|で作られたセッションファイルを読み
込んだ後
SessionLoadPost |:mksession| コマンドを使用して作成されたセッ
ションファイルを読み込だ後
*SessionWritePost*
SessionWritePost |:mksession| コマンドを呼び出してセッションファ
イルを書き込んだ後。
Expand Down
6 changes: 5 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.2. Last change: 2026 Feb 14
*autocmd.txt* For Vim version 9.2. Last change: 2026 Feb 25


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -435,6 +435,7 @@ Name triggered by ~
|QuickFixCmdPre| before a quickfix command is run
|QuickFixCmdPost| after a quickfix command is run

|SessionLoadPre| before loading a session file
|SessionLoadPost| after loading a session file

|SessionWritePost| after writing the session file using
Expand Down Expand Up @@ -1182,6 +1183,9 @@ SafeStateAgain Like SafeState but after processing any
triggered often, don't do something that takes
time.

*SessionLoadPre*
SessionLoadPre Before loading the session file created using
the |:mksession| command.
*SessionLoadPost*
SessionLoadPost After loading the session file created using
the |:mksession| command.
Expand Down