Vim Tips: How to perform Page Up/Down?
Posted by Joys of Programming on in Linux
For navigating in Vim, we normally make use of the arrow keys (in insert mode) or h-j-k-l combination (usually in Escape mode). To navigate the text page by page, you need the following commands
CTRL+F : Page Down
CTRL+B: Page Up
Tips to remember these shortcuts, assume F and B as follows
CTRL + F: Forward (Navigating down the page)
CTRL + B: Backward (Navigating up the page)
Check for other scrolling options.
Comments: