Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何启用从 vim 到 os 剪贴板的复制粘贴?
我已经看到在 yanking 命令之后添加一个 + 号可以复制到剪贴板。但是如何在我的 vim 中启用此功能?
您可以在ank、aste 等命令之前通过预先添加一个寄存器名称,例如,将 yank 插入第一个命名的寄存器,即.yp"{reg}a"ayy
y
p
"{reg}
a
"ayy
该寄存器对应于系统剪贴板,在 Linux 系统上,用于 X 选择的+寄存器略有不同。*详情请参阅:help registers。
+
*
:help registers
正如您所发现的,您可以通过更改默认目标寄存器:set clipboard=unnamed[plus]。
:set clipboard=unnamed[plus]
知道了。
set clipboard=unnamed
像魅力一样工作。