5. Vim Navigation
Lesson Content
Now you may notice, the mouse is nowhere is use here. To navigate a text document in vim, use the following keys:
- h or the left arrow - will move you left one character
- j or the up arrow - will move you up one line
- k or the down arrow - will move you down one line
- l or the right arrow - will move you right one character
Exercise
No exercises for this lesson.
Quiz Question
# What letter is used to move down?
> To perform multi-position navigation use number with these commands. For instance to navigate cursor 10 line below from current line, execute following command $
``` 10j ``` You can use numbers with remaining commands as well.
1. [ ] D
2. [ ] S
3. [ ] Down Arrow key
4. [x] k