From b1bfc5b10abc04d5e4f108589fe681649e280ed8 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Sun, 24 Jan 2021 16:53:56 +0900 Subject: [PATCH 01/13] autocmd.txt: Vim 8.2.2377 --- en/autocmd.txt | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/en/autocmd.txt b/en/autocmd.txt index a5407046a..dfd7dcb44 100644 --- a/en/autocmd.txt +++ b/en/autocmd.txt @@ -1,4 +1,4 @@ -*autocmd.txt* For Vim version 8.2. Last change: 2020 Oct 26 +*autocmd.txt* For Vim version 8.2. Last change: 2020 Dec 19 VIM REFERENCE MANUAL by Bram Moolenaar @@ -70,6 +70,11 @@ effects. Be careful not to destroy your text. The special pattern or defines a buffer-local autocommand. See |autocmd-buflocal|. +If the `:autocmd` is in Vim9 script (a script that starts with `:vim9script` +and in a `:def` function) then {cmd} will be executed as in Vim9 +script. Thus this depends on where the autocmd is defined, not where it is +triggered. + Note: The ":autocmd" command can only be followed by another command when the '|' appears before {cmd}. This works: > :augroup mine | au! BufRead | augroup END @@ -301,6 +306,9 @@ Name triggered by ~ |VimLeavePre| before exiting Vim, before writing the viminfo file |VimLeave| before exiting Vim, after writing the viminfo file +|VimSuspend| when suspending Vim +|VimResume| when Vim is resumed after being suspended + Terminal |TerminalOpen| after a terminal buffer was created |TerminalWinOpen| after a terminal buffer was created in a new window @@ -551,12 +559,15 @@ CmdlineChanged After a change was made to the text in the *CmdlineEnter* CmdlineEnter After moving the cursor to the command line, where the user can type a command or search - string. + string; including non-interactive use of ":" + in a mapping, but not when using ||. is set to a single character, indicating the type of command-line. |cmdwin-char| *CmdlineLeave* -CmdlineLeave Before leaving the command line. +CmdlineLeave Before leaving the command line; including + non-interactive use of ":" in a mapping, but + not when using ||. Also when abandoning the command line, after typing CTRL-C or . When the commands result in an error the @@ -840,6 +851,8 @@ FuncUndefined When a user function is used but it isn't when it's used. The pattern is matched against the function name. Both and are set to the name of the function. + Not triggered when compiling a |Vim9| + function. NOTE: When writing Vim scripts a better alternative is to use an autoloaded function. See |autoload-functions|. @@ -1207,6 +1220,7 @@ VimLeave Before exiting Vim, just after writing the To detect an abnormal exit use |v:dying|. When v:dying is 2 or more this event is not triggered. + To get the exit code use |v:exiting|. *VimLeavePre* VimLeavePre Before exiting Vim, just before writing the .viminfo file. This is executed only once, @@ -1217,10 +1231,22 @@ VimLeavePre Before exiting Vim, just before writing the < To detect an abnormal exit use |v:dying|. When v:dying is 2 or more this event is not triggered. + To get the exit code use |v:exiting|. *VimResized* VimResized After the Vim window was resized, thus 'lines' and/or 'columns' changed. Not when starting up though. + *VimResume* +VimResume When the Vim instance is resumed after being + suspended and |VimSuspend| was triggered. + Useful for triggering |:checktime| and ensure + the buffers content did not change while Vim + was suspended: > + :autocmd VimResume * checktime +< *VimSuspend* +VimSuspend When the Vim instance is suspended. Only when + CTRL-Z was typed inside Vim, not when the + SIGSTOP or SIGTSTP signal was sent to Vim. *WinEnter* WinEnter After entering another window. Not done for the first window, when Vim has just started. From de3c931f5b5febbd4577717294fb21e39a6ce288 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Sun, 24 Jan 2021 18:07:40 +0900 Subject: [PATCH 02/13] filetype.txt: Vim 8.2.2377 --- en/filetype.txt | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/en/filetype.txt b/en/filetype.txt index 4eb746260..d3a4bde8b 100644 --- a/en/filetype.txt +++ b/en/filetype.txt @@ -147,6 +147,7 @@ can be used to overrule the filetype used for certain extensions: *.w g:filetype_w |ft-cweb-syntax| *.i g:filetype_i |ft-progress-syntax| *.p g:filetype_p |ft-pascal-syntax| + *.pp g:filetype_pp |ft-pascal-syntax| *.sh g:bash_is_sh |ft-sh-syntax| *.tex g:tex_flavor |ft-tex-plugin| @@ -563,16 +564,15 @@ Local mappings: MAN *ft-man-plugin* *:Man* *man.vim* -Displays a manual page in a nice way. Also see the user manual -|find-manpage|. - -To start using the ":Man" command before any manual page was loaded, source -this script from your startup vimrc file: > +This plugin displays a manual page in a nice way. See |find-manpage| in the +user manual for more information. +To start using the |:Man| command before any manual page has been loaded, +source this script from your startup |vimrc| file: > runtime ftplugin/man.vim Options: -'iskeyword' the '.' character is added to be able to use CTRL-] on the +'iskeyword' The '.' character is added to support the use of CTRL-] on the manual page name. Commands: @@ -582,24 +582,25 @@ Man {number} {name} Global mapping: K Displays the manual page for the word under the cursor. -ManPreGetPage idem, allows for using a mapping: > - nmap ManPreGetPage +ManPreGetPage + idem, allows for using a mapping: > + nmap ManPreGetPage Local mappings: CTRL-] Jump to the manual page for the word under the cursor. CTRL-T Jump back to the previous manual page. -q Same as ":quit" +q Same as the |:quit| command. To use a vertical split instead of horizontal: > let g:ft_man_open_mode = 'vert' To use a new tab: > let g:ft_man_open_mode = 'tab' -To enable folding use this: > - let g:ft_man_folding_enable = 1 -If you do not like the default folding, use an autocommand to add your desired +To enable |folding|, use this: > + let g:ft_man_folding_enable = 1 +If you do not like the default folding, use an |autocommand| to add your desired folding style instead. For example: > - autocmd FileType man setlocal foldmethod=indent foldenable + autocmd FileType man setlocal foldmethod=indent foldenable If you would like :Man {number} {name} to behave like man {number} {name} by not running man {name} if no page is found, then use this: > @@ -612,7 +613,7 @@ page in a Vim window: > MANPAGER *manpager.vim* -The :Man command allows you to turn Vim into a manpager (that syntax highlights +The |:Man| command allows you to turn Vim into a manpager (that syntax highlights manpages and follows linked manpages on hitting CTRL-]). For bash,zsh,ksh or dash, add to the config file (.bashrc,.zshrc, ...) From fb514a8572d69c490343ab85ecc9cb8cd60bf7a6 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Sun, 24 Jan 2021 18:00:31 +0900 Subject: [PATCH 03/13] autocmd.jax: Vim 8.2.2377 translate --- doc/autocmd.jax | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/doc/autocmd.jax b/doc/autocmd.jax index 06b6e87de..75bf16b8e 100644 --- a/doc/autocmd.jax +++ b/doc/autocmd.jax @@ -1,4 +1,4 @@ -*autocmd.txt* For Vim バージョン 8.2. Last change: 2020 Oct 26 +*autocmd.txt* For Vim バージョン 8.2. Last change: 2020 Dec 19 VIMリファレンスマニュアル by Bram Moolenaar @@ -67,6 +67,10 @@ 特殊なパターンはバッファローカルな自動コマンドを定義する。 |autocmd-buflocal| を参照。 +`:autocmd` が Vim9 script (スクリプトが `:vim9script` で始まるのと `:def` 関数 +内) にあると {cmd} は Vim9 script として実行される。したがってこの依存は自動コ +マンドが定義された位置に依存し、トリガーされた位置ではない。 + Note: '|' が {cmd} の前にある場合、":autocmd" コマンドの後には別のコマンドを続 けることができる。これは動作する: > :augroup mine | au! BufRead | augroup END @@ -306,6 +310,9 @@ Vimは以下のイベントを認識する。イベント名が大文字か小 |VimLeavePre| Vimを終了する前、viminfoファイルを書き出す前 |VimLeave| Vimを終了する前、viminfoファイルを書き出した後 +|VimSuspend| Vimがサスペンドした時 +|VimResume| Vimがサスペンド後復帰した時 + 端末 |TerminalOpen| 端末バッファが生成された後 |TerminalWinOpen| 新しいウィンドウで端末バッファが生成された後 @@ -558,14 +565,18 @@ CmdlineChanged コマンドラインのテキストに変更が加えられた |cmdwin-char| *CmdlineEnter* CmdlineEnter ユーザーがコマンドを入力もしくは文字列を検索で - きるコマンドラインにカーソルが移動した後。 + きるコマンドラインにカーソルが移動した後、非イ + ンタラクティブなマッピング内での ":" 利用を含 + むが、|| の利用は含まない。 はコマンドラインの種類を示す 1 文字に 設定される。 |cmdwin-char| *CmdlineLeave* -CmdlineLeave カーソルがコマンドラインを離れる前。CTRL-C も - しくは の入力によってコマンドラインを放 - 棄する場合も同様。 +CmdlineLeave カーソルがコマンドラインを離れる前、非インタラ + クティブなマッピング内での ":" 利用を含む + が、|| の利用は含まない。CTRL-C もしくは + の入力によってコマンドラインを放棄する場 + 合も同様。 コマンドの結果がエラーとなる場合は、コマンドラ インは引き続き実行中となる。 はコマンドラインの種類を示す 1 文字に @@ -832,6 +843,7 @@ FuncUndefined ユーザー定義関数が使われたが、定義されてい ある。パターンは関数名に対して照合される。 の両方とも関数名に設定され る。 + コンパイルされた |Vim9| 関数では発生しない。 NOTE: Vim script を書くときには autoload 関数 を使う方がよい。 |autoload-functions|を参照。 @@ -1193,6 +1205,7 @@ VimLeave Vim を終了する前で、ファイル .viminfo を書き込 異常終了の検出には |v:dying| を使うこと。 終了時に v:dying が 2 以上のときはこのイベント は発生しない。 + 終了コードは |v:exiting| から得る。 *VimLeavePre* VimLeavePre Vim を終了する前で、ファイル .viminfo を書き込 む直前。これは終了時にたまたまカレントバッファ @@ -1203,10 +1216,22 @@ VimLeavePre Vim を終了する前で、ファイル .viminfo を書き込 < 異常終了の検出には |v:dying| を使うこと。 終了時に v:dying が 2 以上のときはこのイベント は発生しない。 + 終了コードは |v:exiting| から得る。 *VimResized* VimResized Vimウィンドウのサイズが変わったとき。よって 'lines' と 'columns' が変更される。しかし開始 時には発生しない。 + *VimResume* +VimResume Vimがサスペンドと |VimSuspend| がトリガーした + 後、Vimのインスタンスが復帰したとき。 + Vimがサスペンド中はバッファ内容に変化がないこ + とを保証するので |:checktime| を実行するのに便 + 利である: > + :autocmd VimResume * checktime +< *VimSuspend* +VimSuspend Vimのインスタンスがサスペンドしたとき。Vim内で + CTRL-Z をタイプして、SIGSTOP か SIGTSTP シグナ + ルがVimに送られた時。 *WinEnter* WinEnter 別のウィンドウに入った後。Vimの開始直後、1個目 のウィンドウに入ったときは発生しない。ウィンド From 618d69a6c0ad3bddeaa93e848adcf75737e7047e Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Sun, 24 Jan 2021 19:52:52 +0900 Subject: [PATCH 04/13] filetype.jax: Vim 8.2.2377 translate --- doc/filetype.jax | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/doc/filetype.jax b/doc/filetype.jax index b9f73c5e3..18522ad0f 100644 --- a/doc/filetype.jax +++ b/doc/filetype.jax @@ -153,6 +153,7 @@ NOTE: Vi互換とは全てのオプションがグローバルであることを *.w g:filetype_w |ft-cweb-syntax| *.i g:filetype_i |ft-progress-syntax| *.p g:filetype_p |ft-pascal-syntax| + *.pp g:filetype_pp |ft-pascal-syntax| *.sh g:bash_is_sh |ft-sh-syntax| *.tex g:tex_flavor |ft-tex-plugin| @@ -553,17 +554,17 @@ GIT COMMIT *ft-gitcommit-plugin* MAN *ft-man-plugin* *:Man* *man.vim* -マニュアルページを洗練された方法で表示する。ユーザーマニュアルの -|find-manpage|も参照のこと。 +このプラグインはマニュアルページを洗練された方法で表示する。ユーザーマニュアル +の詳細な情報は |find-manpage| も参照のこと。 -マニュアルページを読み込む前に ":Man" を利用するには、起動vimrcファイルでこの -スクリプトを読み込む必要がある: > +マニュアルページを読み込まれる前に |:Man| を利用するには、起動 |vimrc| ファイ +ルでこのスクリプトを読み込む必要がある: > runtime ftplugin/man.vim オプション: -'iskeyword' マニュアルページの名前の上でCTRL-]を使えるようにするために文字 - '.' が追加される。 +'iskeyword' マニュアルページの名前の上で CTRL-] の利用をサポートするように + するために文字 '.' が追加される。 コマンド: Man {name} {name} についてのマニュアルページを表示する。 @@ -573,13 +574,14 @@ Man {number} {name} グローバルキーマップ: K カーソル下の単語についてのマニュアルページを表示する。 -ManPreGetPage 同上、マッピングを使うことを可能にする: > - nmap ManPreGetPage +ManPreGetPage + 同上、マッピングを使うことを可能にする: > + nmap ManPreGetPage ローカルキーマップ: CTRL-] カーソルの下の単語についてのマニュアルページへ移動する。 CTRL-T 直前のマニュアルページへ戻る。 -q ":quit" と同じ +q |:quit| コマンドと同じ。 水平の代わりに垂直分割を使用するには: > let g:ft_man_open_mode = 'vert' @@ -603,8 +605,8 @@ q ":quit" と同じ MANPAGER *manpager.vim* -:Man コマンドを使うと、Vim をマンページにできる(その構文はマンページをハイライ -ト表示し、CTRL-] でヒットしたリンク先のマンページをたどる)。 +|:Man| コマンドを使うと、Vim をマンページにできる(その構文はマンページをハイラ +イト表示し、CTRL-] でヒットしたリンク先のマンページをたどる)。 bash, zsh, ksh もしくは dash の場合、設定ファイル (.bashrc, .zshrc, ...) に以 下の設定を追加する。 From 68dbb925bf639c8a02724deb0c7705beee0ca39d Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 27 Jan 2021 08:27:34 +0900 Subject: [PATCH 05/13] filetype.txt: Update Vim 8.2.2415 --- en/filetype.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/filetype.txt b/en/filetype.txt index d3a4bde8b..6a23b2fdb 100644 --- a/en/filetype.txt +++ b/en/filetype.txt @@ -1,4 +1,4 @@ -*filetype.txt* For Vim version 8.2. Last change: 2020 Sep 28 +*filetype.txt* For Vim version 8.2. Last change: 2021 Jan 21 VIM REFERENCE MANUAL by Bram Moolenaar From 61ab52e0a3c7765aea75525d7a1661227dc6bce0 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 27 Jan 2021 09:26:16 +0900 Subject: [PATCH 06/13] filetype.jax: Update Vim 8.2.2415 translate --- doc/filetype.jax | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/filetype.jax b/doc/filetype.jax index 18522ad0f..1df5b7634 100644 --- a/doc/filetype.jax +++ b/doc/filetype.jax @@ -1,4 +1,4 @@ -*filetype.txt* For Vim バージョン 8.2. Last change: 2020 Sep 28 +*filetype.txt* For Vim バージョン 8.2. Last change: 2021 Jan 21 VIMリファレンスマニュアル by Bram Moolenaar From ca5f028db856d9eb5b64b3eae13c8d972e29cd39 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 3 Feb 2021 08:39:31 +0900 Subject: [PATCH 07/13] filetype.jax: treat translate Co-authored-by: h_east --- doc/filetype.jax | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/filetype.jax b/doc/filetype.jax index 1df5b7634..f5f0e1ea8 100644 --- a/doc/filetype.jax +++ b/doc/filetype.jax @@ -557,7 +557,7 @@ MAN *ft-man-plugin* *:Man* *man.vim* このプラグインはマニュアルページを洗練された方法で表示する。ユーザーマニュアル の詳細な情報は |find-manpage| も参照のこと。 -マニュアルページを読み込まれる前に |:Man| を利用するには、起動 |vimrc| ファイ +マニュアルページが読み込まれる前に |:Man| を利用するには、起動 |vimrc| ファイ ルでこのスクリプトを読み込む必要がある: > runtime ftplugin/man.vim From aa307997c40ef5c9ceeefe63f422b93bc6234a28 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 3 Feb 2021 08:40:18 +0900 Subject: [PATCH 08/13] autocmd.jax: fix line break point Co-authored-by: h_east --- doc/autocmd.jax | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/autocmd.jax b/doc/autocmd.jax index 75bf16b8e..ddadcd6b7 100644 --- a/doc/autocmd.jax +++ b/doc/autocmd.jax @@ -573,8 +573,8 @@ CmdlineEnter ユーザーがコマンドを入力もしくは文字列を検 |cmdwin-char| *CmdlineLeave* CmdlineLeave カーソルがコマンドラインを離れる前、非インタラ - クティブなマッピング内での ":" 利用を含む - が、|| の利用は含まない。CTRL-C もしくは + クティブなマッピング内での ":" 利用を含むが、 + || の利用は含まない。CTRL-C もしくは の入力によってコマンドラインを放棄する場 合も同様。 コマンドの結果がエラーとなる場合は、コマンドラ From 212e6fe615e461545e630c478c6af6c1117fbce6 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 3 Feb 2021 08:42:04 +0900 Subject: [PATCH 09/13] autocmd.jax: fix and re-translate VimSuspend Co-authored-by: h_east --- doc/autocmd.jax | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/autocmd.jax b/doc/autocmd.jax index ddadcd6b7..08eca15d0 100644 --- a/doc/autocmd.jax +++ b/doc/autocmd.jax @@ -1230,8 +1230,8 @@ VimResume Vimがサスペンドと |VimSuspend| がトリガーした :autocmd VimResume * checktime < *VimSuspend* VimSuspend Vimのインスタンスがサスペンドしたとき。Vim内で - CTRL-Z をタイプして、SIGSTOP か SIGTSTP シグナ - ルがVimに送られた時。 + CTRL-Z がタイプされた時だけであり、SIGSTOP か + SIGTSTP シグナルがVimに送られた時ではない。 *WinEnter* WinEnter 別のウィンドウに入った後。Vimの開始直後、1個目 のウィンドウに入ったときは発生しない。ウィンド From 8e35e54a65968d06083625a6a3d0c98ad2137f45 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 3 Feb 2021 08:48:11 +0900 Subject: [PATCH 10/13] filetype.jax: catch up translate loss paragraph Co-authored-by: h_east --- doc/filetype.jax | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/filetype.jax b/doc/filetype.jax index f5f0e1ea8..21e50e9c7 100644 --- a/doc/filetype.jax +++ b/doc/filetype.jax @@ -588,11 +588,11 @@ q |:quit| コマンドと同じ。 新しいタブを使うには: > let g:ft_man_open_mode = 'tab' -折畳を有効にするにはこの変数を使う: > - let g:ft_man_folding_enable = 1 -もしデフォルトの折畳が好みではないのなら、代わりに autocommand を使って望んだ -折畳スタイルを追加できる。例: > - autocmd FileType man setlocal foldmethod=indent foldenable +折畳 |folding| を有効にするにはこの変数を使う: > + let g:ft_man_folding_enable = 1 +もしデフォルトの折畳が好みではないのなら、代わりに |autocommand| を使って望ん +だ折畳スタイルを追加できる。例: > + autocmd FileType man setlocal foldmethod=indent foldenable :Man {number} {name} が man {number} {name} のように振る舞い、ページが見つから ない場合に man {name} を実行させたくなければ、これを使用する: > From 5b9623bc131b8d960569fed35a58fc78e13ee912 Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Wed, 3 Feb 2021 22:00:05 +0900 Subject: [PATCH 11/13] autocmd.jax: VimSuspend refine desc Co-authored-by: K.Takata --- doc/autocmd.jax | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/autocmd.jax b/doc/autocmd.jax index 08eca15d0..f1f923072 100644 --- a/doc/autocmd.jax +++ b/doc/autocmd.jax @@ -1224,9 +1224,9 @@ VimResized Vimウィンドウのサイズが変わったとき。よって *VimResume* VimResume Vimがサスペンドと |VimSuspend| がトリガーした 後、Vimのインスタンスが復帰したとき。 - Vimがサスペンド中はバッファ内容に変化がないこ - とを保証するので |:checktime| を実行するのに便 - 利である: > + |:checktime| を実行してVimがサスペンド中にバッ + ファ内容に変化がなかったことを保証するのに便利 + である: > :autocmd VimResume * checktime < *VimSuspend* VimSuspend Vimのインスタンスがサスペンドしたとき。Vim内で From 1d0d09660bb30d70a51ecf528ddb001d9694813f Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Thu, 4 Feb 2021 20:52:41 +0900 Subject: [PATCH 12/13] autocmd.txt: Update Vim 8.2.2465 --- en/autocmd.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/en/autocmd.txt b/en/autocmd.txt index dfd7dcb44..20a8f4b49 100644 --- a/en/autocmd.txt +++ b/en/autocmd.txt @@ -1,4 +1,4 @@ -*autocmd.txt* For Vim version 8.2. Last change: 2020 Dec 19 +*autocmd.txt* For Vim version 8.2. Last change: 2021 Jan 28 VIM REFERENCE MANUAL by Bram Moolenaar @@ -54,7 +54,8 @@ effects. Be careful not to destroy your text. :au[tocmd] [group] {event} {pat} [++once] [++nested] {cmd} Add {cmd} to the list of commands that Vim will execute automatically on {event} for a file matching - {pat} |autocmd-patterns|. + {pat} |autocmd-patterns|. + Here {event} cannot be "*". *E1155* Note: A quote character is seen as argument to the :autocmd and won't start a comment. Vim always adds the {cmd} after existing autocommands, From 8f46de144d6ca9564608477cac766f516ec24bab Mon Sep 17 00:00:00 2001 From: Tsuyoshi CHO Date: Thu, 4 Feb 2021 20:55:35 +0900 Subject: [PATCH 13/13] autocmd.jax: Update Vim 8.2.2465 translate --- doc/autocmd.jax | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/autocmd.jax b/doc/autocmd.jax index f1f923072..6058035d0 100644 --- a/doc/autocmd.jax +++ b/doc/autocmd.jax @@ -1,4 +1,4 @@ -*autocmd.txt* For Vim バージョン 8.2. Last change: 2020 Dec 19 +*autocmd.txt* For Vim バージョン 8.2. Last change: 2021 Jan 28 VIMリファレンスマニュアル by Bram Moolenaar @@ -54,6 +54,7 @@ {pat} |autocmd-patterns| に一致するファイルで、{event} のときに自動的に実行するコマンドのリストに、{cmd} を加 える。 + {event} には "*" は使えない。 *E1155* Note: クォートは :autocmd への引数と見なされ、コメント を開始しない。 {cmd} は常に既存の自動コマンドの後に追加されるので、