From 7ad8ed77b5cc7ad7c9d3e4c24bd03f84cf5a4889 Mon Sep 17 00:00:00 2001 From: Igor Irianto Date: Thu, 11 Feb 2021 10:01:02 -0600 Subject: [PATCH] Add help references to call cmd and call function --- ch27_vimscript_functions.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ch27_vimscript_functions.md b/ch27_vimscript_functions.md index 9e02808..a173dc9 100644 --- a/ch27_vimscript_functions.md +++ b/ch27_vimscript_functions.md @@ -187,7 +187,9 @@ echo call("Tasty", ["gravy"]) " returns "Tasty gravy" ``` -To clear any confusion, you have just used two different `call` commands: the `:call` command-line command and the `call()` function. The `call()` function accepts as its first argument the function name (string) and its second argument the formal parameters (list). +To clear any confusion, you have just used two different `call` commands: the `:call` command-line command and the `call()` function. The `call()` function accepts as its first argument the function name (string) and its second argument the formal parameters (list). + +To learn more about `:call` and `call()`, check out `:h call()` and `:h :call`. ## Default Argument