如何在 Vim 中缩进光标上方的多行?

发布于 2024-12-18 23:52:23 字数 62 浏览 1 评论 0原文

我知道 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

悲歌长辞 2024-12-25 23:52:23

它应该与 或 一起使用

:-2,.>

或者

>2k

,在可视模式下选择该行和上面的两个,然后只需键入 >

:he shift-left-right 有更多关于换档的信息。
:he :ranges 告诉您有关指定范围的更多信息为一个命令。

It should be working with

:-2,.>

or

>2k

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.

随梦而飞# 2024-12-25 23:52:23

2>k(或>2k

请记住手册中,

<前><代码> *>>*
>>>向右 Shift [count] 行 1 'shiftwidth'。

但是也,

<前><代码> *>*
>{motion} Shift {motion} 行向右移动 1 'shiftwidth'。

2>k (or >2k)

Remember from the manual,

                          *>>*
>>            Shift [count] lines one 'shiftwidth' rightwards.

But also,

                          *>*
>{motion}     Shift {motion} lines one 'shiftwidth' rightwards.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文