自動コマンドの仕組みと使用方法は理解していますが、augroupの目的は少し確信しています。読みました:help augroup
*:aug* *:augroup*
:aug[roup] {name} Define the autocmd group name for the
following ":autocmd" commands. The name "end"
or "END" selects the default group.
To avoid confusion, the name should be
different from existing {event} names, as this
most likely will not do what you intended.
これは、なぜそれらが有用であるのか、または単に一連のオートコマンドを隣り合わせに定義するだけではなく、オートコマンドグループ名を作成したい理由を実際には説明しません。
たとえば、オートコマンドfoo
とbar
が関連している場合、なぜしたいのでしょうか
augroup spam
au!
au foo * foo
au bar * bar
augroup END
私ができるとき
"Autocommands for spam
au foo * foo
au bar * bar
augroupsの本当の意味を誤解していない限り。それで、なぜ彼らは役に立つのでしょうか?
!
:)