mirror of
				https://github.com/mhinz/vim-galore.git
				synced 2025-11-04 03:45:36 +08:00 
			
		
		
		
	Add help tags for autcmds
This commit is contained in:
		@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user