Skip to content

Commit

Permalink
Fix a word typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iggredible committed Jan 24, 2022
1 parent a69927c commit 81c5ff5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch07_the_dot_command.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ The dot command's power comes from exchanging several keystrokes for one. It is

When editing, think about repeatability. For example, if I need to remove the next three words, is it more economical to use `d3w` or to do `dw` then `.` two times? Will you be deleting a word again? If so, then it makes sense to use `dw` and repeat it several times instead of `d3w` because `dw` is more reusable than `d3w`.

The dot command is the simpversatile command for automating single changes. In a later chapter, you will learn how to automate more complex actions with Vim macros. But first, let's learn about registers to store and retrieve text.
The dot command is a versatile command for automating single changes. In a later chapter, you will learn how to automate more complex actions with Vim macros. But first, let's learn about registers to store and retrieve text.

0 comments on commit 81c5ff5

Please sign in to comment.