vim practical guide (1): cursor movement (1)-move between words

1. Move to the head of the next word: w

       

2. Move to the head of the previous word: b

      

3. Move to the end of the next word: e

      

4. Move to the end of the previous word: ge

       

5. Move backward to the head of the string separated by spaces: W

6. Move forward to the head of the string separated by spaces: B

7. Move backward to the end of the string separated by spaces: E

8. Move forward to the end of the string separated by spaces: gE

 

Guess you like

Origin blog.csdn.net/lianshaohua/article/details/108536512