From 3c32280fe6544be56b9d43621022f30cd52bf46f Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Wed, 2 May 2018 11:18:44 +0200 Subject: [PATCH] Typo: count -> range Fixes #133 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1628ef..a282bc8 100644 --- a/README.md +++ b/README.md @@ -2225,8 +2225,8 @@ With `:normal` you can do normal mode mappings from the command-line. E.g. `:normal! 4j` will make the cursor go down 4 lines (without using any custom mapping for "j" due to the "!"). -Mind that `:normal` also takes a count, so `:%norm! Iabc` would prepend "abc" to -every line. +Mind that `:normal` also takes a [range](#ranges), so `:%norm! Iabc` would +prepend "abc" to every line. With `:execute` you can mix commands with expressions. Assume you edit a C source file and want to switch to its header file: