Add help tags for autcmds

This commit is contained in:
Marco Hinz 2016-07-14 12:37:53 +02:00
parent a7e07f6fde
commit e17aa4f746

View File

@ -769,6 +769,8 @@ Putting it in a nutshell, Vim makes heavy use of events and autocmds but also
exposes a clean interface to hook into that event-driven system for exposes a clean interface to hook into that event-driven system for
customization. customization.
Related: `:h autocommand`
## Changelist? Jumplist? ## Changelist? Jumplist?
The positions of the last 100 changes are kept in the **changelist**. Several The positions of the last 100 changes are kept in the **changelist**. Several
@ -1310,6 +1312,8 @@ if exists('#User#ChibbyExit')
endif endif
``` ```
Related: `:h User`
### Nested autocmds ### Nested autocmds
By default, autocmds do not nest! If an autocmd executes a command, which in By default, autocmds do not nest! If an autocmd executes a command, which in
@ -1333,6 +1337,8 @@ instead:
autocmd VimEnter * nested edit $MYVIMRC autocmd VimEnter * nested edit $MYVIMRC
``` ```
Related: `:h autocmd-nested`
## Clipboard ## Clipboard
Required [features](#what-kind-of-vim-am-i-running): `+clipboard` and optionally Required [features](#what-kind-of-vim-am-i-running): `+clipboard` and optionally