Chapter 1: Cursor Movement
Welcome to Chapter 1, this chapter will learn simple cursor movement operations.
If you already have a certain foundation, this part can be skipped, directly G to the end of the document according to the operation into the next chapter.
Move the cursor
Unit level
hleft one characterjline downkline uplright one character
Word level
worWmove right to the beginning of the wordeorEmove right to the end of the wordborBmove left to the beginning of the word
Note: All lowercase words are word boundaries with word boundaries, uppercase letters with spaces as boundaries
Try to feel the various movements in the following character blocks!
This project's GitHub url is https://github.com/dofy/learn-vim
Please clone it to your local folder and open the first file which is
named chapter01.md via following command "vim chapter01.md"
and welcome to https://yahaha.net :)Block level
ggto the first line of the documentGto the last line of the document0to the beginning of the line (column 1)^to the first non-whitespace character$to the end of the lineHmove to the top of the screenMmove to the middle of the screenLmove to the bottom of the screenCtrl-dmove down half a pageCtrl-umove up half a pageCtrl-fmove down one pageCtrl-bmove up one page:<N>or<N>ggjump to line N:+<N>or<N>jjump down N lines:-<N>or<N>kjump up N lines
Note: A number N can be added before all commands, which means that the command behind it is executed N times. For example, if you want to move down 3 lines, you can use :+3 or 3j to achieve the same effect. In addition, there are actually two commands above: one is executed immediately after typing, such as gg; the other is to enter : first (there will be a / first), this type of command needs to be executed after the input is completed. Press Enter, which is the same in the following tutorials.
Now you can swim in the current file. When you are familiar with various movement operations, you can locate the current document to the last line by pressing
Gand enter the next chapter according to the prompt.Place the cursor anywhere in the file name behind it and press the keyboard
gfto enter Chapter 2.
Last updated
Was this helpful?