From e17aa4f746d665d94d4f1657e999106d6c759de8 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Thu, 14 Jul 2016 12:37:53 +0200 Subject: [PATCH] Add help tags for autcmds --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index fb4abd3..2e7d8ff 100644 --- a/README.md +++ b/README.md @@ -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 customization. +Related: `:h autocommand` + ## Changelist? Jumplist? The positions of the last 100 changes are kept in the **changelist**. Several @@ -1310,6 +1312,8 @@ if exists('#User#ChibbyExit') endif ``` +Related: `:h User` + ### Nested autocmds By default, autocmds do not nest! If an autocmd executes a command, which in @@ -1333,6 +1337,8 @@ instead: autocmd VimEnter * nested edit $MYVIMRC ``` +Related: `:h autocmd-nested` + ## Clipboard Required [features](#what-kind-of-vim-am-i-running): `+clipboard` and optionally