Vim:复制/删除从第一个非空白字符到最后一个非空白字符的行

发布于 2024-11-03 21:09:12 字数 112 浏览 1 评论 0原文

大多数时候,当我在 Vim 中使用 yydd 复制或删除某些代码时,我也会遇到缩进空格。是否有一个快速命令可以让我在没有前导或尾随空格的情况下拉出一行?

Most time when I copy or delete some code in Vim use yy or dd, I also got the indent spaces. Is there a quick command that I can yank a line without leading or trailing spaces?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

东走西顾 2024-11-10 21:09:12

我不是巫师,但是:

^v$gey

对我有用。您始终可以创建别名。

编辑:这是一个更好的不依赖于视觉模式的。

^yg_

I'm not a wizard, but:

^v$gey

works for me. You can always make an alias.

EDIT: here's a better one that doesn't rely on visual mode.

^yg_
九歌凝 2024-11-10 21:09:12

还有另一种方法可以解决您隐含的问题。将行拉入缓冲区后,您可以使用 ]p]P 使用适当的缩进粘贴它们。这些粘贴命令会自动调整粘贴行的缩进以匹配光标所在行的缩进。

There's another way to solve your implied problem. After you yank line(s) into the buffer, you can then paste them using the appropriate indent using ]p or ]P. These paste commands automatically adjust the indent of the pasted line(s) to match the indent of the line where the cursor is.

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