mirror of
https://github.com/iggredible/Learn-Vim
synced 2025-02-17 00:08:26 +00:00
Update ch07_the_dot_command.md
fixed a typo
This commit is contained in:
parent
4b2743a0f0
commit
44c45d637c
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ potatoes
|
|||
fruit-juice
|
||||
```
|
||||
|
||||
Lets add a comma at the end of each line. Starting at the first line, do `A,<Esc>j`. By now, you realize that `j` does not cause a change. The change here is only `A,`. You can move and repeat the change with `j . j .`. The full command is `A,<Esc>j.j.`.
|
||||
Let's add a comma at the end of each line. Starting at the first line, do `A,<Esc>j`. By now, you realize that `j` does not cause a change. The change here is only `A,`. You can move and repeat the change with `j . j .`. The full command is `A,<Esc>j.j.`.
|
||||
|
||||
Every action from the moment you press the insert command operator (`A`) until you exit the insert command (`<Esc>`) is considered as a change.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue