nenter moves the cursor to n lines down from the current position.

is there any shortcut to move n lines up?

link|improve this question

33% accept rate
you might want to try the vimtutor tutorial to for an introduction to some basic elements of all the magic vim has to offer. To find out how to start it, you can type :help vimtutor <Enter> in vim's Normal mode or follow this link: vimdoc.sourceforge.net/htmldoc/usr_01.html#vimtutor – accolade Jan 16 at 7:19
feedback

1 Answer

Try:

<n>k

(You can also use <n>j to move down, <n>h to move left and <n>l to move right)

Also: Read :help motion.

link|improve this answer
If you use the arrow keys, preceding them with a count also works. – Heptite Dec 20 '10 at 19:00
Al's right. It took me a few years to get serious about using h/j/k/l instead of the arrow keys, but I'm so glad I did. The real secret is to use things like 'w', 'b', ')', etc. to move around even faster. – labyrinth Jan 6 '11 at 21:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.