如何在VIM的easymotion插件中向上跳转?
在vim中使用easymotion插件时如何跳转到光标上方的行?
How to jump to the lines above the cursor while using the easymotion plugin in vim?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要向后搜索单词,请使用b
尝试
B
搜索WORDSTo search words backwards use
<Leader><Leader>b
Try
<Leader><Leader>B
to search WORDSf
将向前搜索,而F
将向后搜索(向上!)。与t
和T
相同。这类似于标准 Vim 动作
f
/F
这全部在
:help easymotion.txt
中进行了解释<leader><leader>f
will search forward while<leader><leader>F
will search backward (and such upward!). Same witht
andT
.This is analogous to standard Vim motion
f
/F
This is all explained in
:help easymotion.txt