From a8b09617f9b5056f996504f78d6141d0a9e401de Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 23 May 2016 01:12:09 +0900 Subject: [PATCH] Clarify that function call requires `call` Close #487 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84bc483..84d7b45 100644 --- a/README.md +++ b/README.md @@ -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