mirror of
https://github.com/iggredible/Learn-Vim
synced 2025-02-17 00:08:26 +00:00
clarify the results of dw
This commit is contained in:
parent
47bc51cebd
commit
c91aa3119a
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ Now that you know basic nouns and verbs, let's apply our grammar rule! Suppose y
|
|||
const learn = "vim";
|
||||
```
|
||||
- To yank everything from your current location to the end of the line: `y$`.
|
||||
- To delete one word from current location: `dw`.
|
||||
- To delete from your current location to the beginning of the next word: `dw`.
|
||||
- To change the next paragraph, say `c}`.
|
||||
|
||||
Motions also accept count number as arguments *(I will discuss this further in the next chapter)*. If you need to go up 3 lines, instead of pressing `k` 3 times, you can do `3k`. Count works with Vim grammar.
|
||||
|
|
Loading…
Add table
Reference in a new issue