자동 명령의 작동 방식과 사용 방법을 이해 하지만 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가 실제로 무엇인지 오해하지 않는 한. 그렇다면 왜 유용합니까?
!
:)