vi中如何从当前位置复制到行尾

发布于 2024-12-09 13:04:01 字数 70 浏览 0 评论 0原文

我在 Windows 中使用 gvim。如何在 vi 中将文本从当前位置复制到行尾并将其粘贴到在 vi 中打开的另一个文件中?

I use gvim in windows. How do I copy text from the current position to the end of the line in vi and paste it in another file opened in vi?

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

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

发布评论

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

评论(4

神魇的王 2024-12-16 13:04:02

移动到行尾的普通模式命令是$

您可以使用 y$ 复制到行尾,然后使用 p 粘贴。

要在不同实例之间复制/粘贴,您可以通过选择 * 寄存器来使用系统剪贴板,因此命令变为 "*y$ 用于复制,"* p 用于粘贴。

$ 移动到换行符

$

y$ 复制到换行符

y ,$

"*y$ 选择剪贴板寄存器 yank-to-linebreak

",*,y,$

"*p 选择剪贴板-注册粘贴

",*,p

检查 :h 寄存器 了解更多信息。

The normal-mode command to move to the end of the line is $.

You can copy to the end of the line with y$ and paste with p.

To copy/paste between different instances, you can use the system clipboard by selecting the * register, so the commands become "*y$ for copying and "*p for pasting.

$ move-to-linebreak

$

y$ yank-to-linebreak

y,$

"*y$ select clipboard-register yank-to-linebreak

",*,y,$

"*p select clipboard-register paste

",*,p

Check :h registers for more information.

小…红帽 2024-12-16 13:04:02

如果您不想在复制时包含换行符,可以使用yg_。 (或者在您的情况下,"*yg_

基本上,只需认识到 $g_ 运动方面存在差异。这对我有帮助无数次。

If you don't want to include the line break with the yank, you can use yg_. (Or in your case, "*yg_)

Basically, just recognize there's a difference between $ and g_ movement-wise. It's helped me on numerous occasions.

捂风挽笑 2024-12-16 13:04:02

将此行添加到您的 .vimrc

" Make Y yank till end of line
nnoremap Y y$

更多内容请参见 我的 vimrc

Add this line to your .vimrc

" Make Y yank till end of line
nnoremap Y y$

More at my vimrc.

久随 2024-12-16 13:04:02

另一种解决方案:Dp 并用 p 粘贴。事实上,这首先删除到行尾,然后将其重新粘贴到同一位置。使用 p 将其粘贴到其他位置。

A different solution: Dp and paste it with p. In fact this first deletes to the end of line and re-pastes it at the same location. Paste it somewhere else with p.

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