如何在 Vim 中缩进光标上方的多行?
我知道 3>>
会缩进当前行和光标下方的两行。如何缩进当前行和上面两行?
I know that 3>>
will indent the current line and the two lines below the cursor. How do I indent the current line and the two lines above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它应该与 或 一起使用
或者
,在可视模式下选择该行和上面的两个,然后只需键入 >。
:he shift-left-right
有更多关于换档的信息。:he :ranges
告诉您有关指定范围的更多信息为一个命令。It should be working with
or
Or, select the line and the two above in visual mode and then just type >.
:he shift-left-right
has more information about shifting.:he :ranges
tells you more about specifying ranges for a command.2>k(或>2k)
请记住手册中,
但是也,
2>k (or >2k)
Remember from the manual,
But also,