剪切到行首/行尾,粘贴到行尾/行首
如果我在一行的中间,如何剪切到行的开头/结尾? (复制是否不同)
如果我位于一行中间,如何粘贴到该行的开头/末尾? (粘贴而不复制文本有很大不同吗?)
谢谢分配!
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Yoda 所说:
d$
剪切到行尾d0
剪切到行首d^
剪切到第一个非空白字符粘贴超过该行的“头部”:
或者
要让它记住默认寄存器,您可以使用
_
未命名寄存器:请注意,在这种情况下,覆盖文本是“忘记”而不是被猛拉。 (默认情况下,替换视觉选择会有效地撤回覆盖的文本,因此您可以将它放在其他地方)
As Yoda said:
d$
cuts to the end of the lined0
cuts to the beginningd^
cuts to first non-whitespace characterTo paste over the 'head' of the line:
or
To make it remember the default register, you could use the
_
unnamed register: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)