Typo: count -> range

Fixes #133
This commit is contained in:
Marco Hinz 2018-05-02 11:18:44 +02:00
parent 0c92501237
commit 3c32280fe6
No known key found for this signature in database
GPG Key ID: 1C980A1B657B4A4F

View File

@ -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: