如何在vi / vim编辑器中移动x行


4

ñ 输入 将光标从当前位置向下移动n行。

是否有任何快捷方式可以移动n行?


你可能想尝试一下 VIMTUTOR 教程介绍了所有魔法vim提供的一些基本元素。要了解如何启动它,您可以键入 :help vimtutor <输入> 在vim的普通模式下或点击此链接: vimdoc.sourceforge.net/htmldoc/usr_01.html#vimtutor
Aaron Thoma

Answers:


8

尝试:

<n>k

(你也可以使用 <n>j 向下移动, <n>h 向左移动 <n>l 向右移动)

另外:阅读 :help motion


如果使用箭头键,则在它们前面加上计数也可以。
Heptite

艾尔是对的。我花了几年时间才认真地使用h / j / k / l而不是箭头键,但我很高兴我做到了。真正的秘诀是使用诸如'w','b',')'等的东西来更快地移动。
labyrinth
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.