From 2a9815428db23f080fad16640b1f4806a89d9a65 Mon Sep 17 00:00:00 2001 From: starnsd Date: Tue, 1 Feb 2022 14:16:45 -0600 Subject: [PATCH] Update ch01_starting_vim.md Type fixed in "Starting Vim the Smart Way" section. --- ch01_starting_vim.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch01_starting_vim.md b/ch01_starting_vim.md index 463d7b2..e91c317 100644 --- a/ch01_starting_vim.md +++ b/ch01_starting_vim.md @@ -161,6 +161,6 @@ If you need to suspend Vim while in the middle of editing, you can press `Ctrl-z ## Starting Vim the Smart Way -The `vim` command can take many different options, just like any other terminal command. Two options allows to pass a Vim command as a parameter: `+{cmd}` and `-c cmd`. As you learn more commands throughout this guide, see if you can apply it when starting Vim. Also being a terminal command, you can combine `vim` with many other terminal commands. For example, you can redirect the output of the `ls` command to be edited in Vim with `ls -l | vim -`. +The `vim` command can take many different options, just like any other terminal command. Two options allow you to pass a Vim command as a parameter: `+{cmd}` and `-c cmd`. As you learn more commands throughout this guide, see if you can apply it when starting Vim. Also being a terminal command, you can combine `vim` with many other terminal commands. For example, you can redirect the output of the `ls` command to be edited in Vim with `ls -l | vim -`. To learn more about `vim` command in the terminal, check out `man vim`. To learn more about the Vim editor, continue reading this guide along with the `:help` command.