Clarify that function call requires call

Close #487
This commit is contained in:
Junegunn Choi 2016-05-23 01:12:09 +09:00
parent bf1e0fb8eb
commit a8b09617f9
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627

View File

@ -62,9 +62,9 @@ $uri = 'https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
Add a vim-plug section to your `~/.vimrc` (or `~/.config/nvim/init.vim` for Neovim):
1. Begin the section with `plug#begin()`
1. Begin the section with `call plug#begin()`
1. List the plugins with `Plug` commands
1. `plug#end()` to update `&runtimepath` and initialize plugin system
1. `call plug#end()` to update `&runtimepath` and initialize plugin system
#### Example