Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
自从我开始使用 vi 以来,我的脑海里一直有这个问题。
我知道 vi 可以将长线包裹成一个不错的块,但是有没有一种快速的方法让我们在块中“向上”或“向下”移动(所以我们不必使用右/左箭头键并花费 30 秒来到达我们想要的地方)?
谢谢
只需在您的移动命令前加上“g”即可忽略换行,例如:
向下移动:
gj
向上移动:
gk
同样,一旦您在正确的行上,然后使用b和w逐字移动比使用左右箭头逐个字符移动要快。
b
w