剪切到行首/行尾,粘贴到行尾/行首

发布于 2024-12-09 21:08:00 字数 104 浏览 0 评论 0原文

如果我在一行的中间,如何剪切到行的开头/结尾? (复制是否不同)

如果我位于一行中间,如何粘贴到该行的开头/末尾? (粘贴而不复制文本有很大不同吗?)

谢谢分配!

If I am in the middle of a line, how to I cut to the beginning/end of a line? (is copy different)

If I am in the middle of a line, how do I paste over to the beg/end of the line? (is pasting w/o copying over the text much different?)

thanks allot!

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

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

发布评论

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

评论(1

凉栀 2024-12-16 21:08:00

正如 Yoda 所说:

  1. d$ 剪切到行尾
  2. d0 剪切到行首
  3. d^ 剪切到第一个非空白字符

粘贴超过该行的“头部”:

v^p

或者

v0p

要让它记住默认寄存器,您可以使用_未命名寄存器:

v$"_p

请注意,在这种情况下,覆盖文本是“忘记”而不是被猛拉。 (默认情况下,替换视觉选择会有效地撤回覆盖的文本,因此您可以它放在其他地方)

As Yoda said:

  1. d$ cuts to the end of the line
  2. d0 cuts to the beginning
  3. d^ cuts to first non-whitespace character

To paste over the 'head' of the line:

v^p

or

v0p

To make it remember the default register, you could use the _ unnamed register:

v$"_p

Note that in that case, the overwritten text is 'forgotten' instead of yanked. (By default replacing a visual selection effectively yanks the overwritten text, so you can put it somewhere else)

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