Ich verstehe, wie Autobefehle funktionieren und wie man sie benutzt, aber ich bin mir ein bisschen sicher, wofür Augroup ist. Ich lese in: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.
Dies erklärt nicht wirklich, warum sie nützlich sind oder warum ich jemals einen Gruppennamen für automatische Befehle festlegen möchte, indem ich nur eine Reihe von automatischen Befehlen nebeneinander definiere.
Zum Beispiel, wenn Autobefehle foo
und bar
verwandt sind, warum sollte ich tun wollen
augroup spam
au!
au foo * foo
au bar * bar
augroup END
wenn ich nur tun könnte
"Autocommands for spam
au foo * foo
au bar * bar
Es sei denn, ich verstehe falsch, wofür Augroups wirklich sind. Warum sind sie also nützlich?
!
:)