Add subsections to ToC

This commit is contained in:
Marco Hinz 2016-07-14 01:19:38 +02:00
parent 9518a934bd
commit a7e07f6fde

View File

@ -47,6 +47,8 @@ My [vimrc](https://github.com/mhinz/dotfiles/blob/master/vim/vimrc).
- [Getting help offline (alternative)](#getting-help-offline-alternative) - [Getting help offline (alternative)](#getting-help-offline-alternative)
- [Getting help online](#getting-help-online) - [Getting help online](#getting-help-online)
- [Autocmds in practice](#autocmds-in-practice) - [Autocmds in practice](#autocmds-in-practice)
- [User events](#user-events)
- [Nested autocmds](#nested-autocmds)
- [Clipboard](#clipboard) - [Clipboard](#clipboard)
- [Clipboard usage (Windows, OSX)](#clipboard-usage-windows-osx) - [Clipboard usage (Windows, OSX)](#clipboard-usage-windows-osx)
- [Clipboard usage (Linux, BSD, ...)](#clipboard-usage-linux-bsd-) - [Clipboard usage (Linux, BSD, ...)](#clipboard-usage-linux-bsd-)
@ -1276,7 +1278,7 @@ If you want to report a Vim bug, use the
You can trigger any event right now: `:doautocmd BufRead`. You can trigger any event right now: `:doautocmd BufRead`.
--- ### User events
Especially for plugins it's useful to create your own "User" events: Especially for plugins it's useful to create your own "User" events:
@ -1308,7 +1310,7 @@ if exists('#User#ChibbyExit')
endif endif
``` ```
--- ### 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
turn would usually trigger another event, it won't happen. turn would usually trigger another event, it won't happen.