From d174f8f9750af396415c57804c48faa30eb126bd Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Fri, 17 Apr 2015 00:32:22 +0800 Subject: [PATCH] Update --- vimscript.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vimscript.md b/vimscript.md index d79455490..26689285e 100644 --- a/vimscript.md +++ b/vimscript.md @@ -10,6 +10,8 @@ let name = "John" echo "Hello, " . name ``` +You can either put this in a script (`script.vim`) and run it (`:source script.vim`), or you can type the commands individually in normal mode as `:let ...` and `:echo ...`. + Variables ---------