Qiang Li
Qiang Li

Reputation: 10865

how to jump down n pages in vim

If I want to jump n pages down in vim, how can I do it?

I don't want to calculate how many lines are there in a page and then jump that way. Is there any way to specify the number of pages in ctrl-f?

Upvotes: 1

Views: 179

Answers (1)

Devin Crossman
Devin Crossman

Reputation: 7592

Type the number of pages followed by PageDown or CTRL-F

eg. 5<PageDown> or 5<CTRL-F> = Move 5 pages down.

Upvotes: 6

Related Questions