如何阻止vim在从剪贴板粘贴时插入注释字符?

发布于 2024-12-09 12:34:31 字数 296 浏览 0 评论 0原文

当我将如下所示的行粘贴到 Vim 时,

" OmniCppComplete
let OmniCpp_NamespaceSearch = 1

Vim 会自动将 " 注释字符添加到所有行中。我如何摆脱它并使其按原样粘贴?

What I'm getting after the paste in Vim:

 66     " OmniCppComplete
 67     " let OmniCpp_NamespaceSearch = 1

When I paste lines, like the ones below, to Vim,

" OmniCppComplete
let OmniCpp_NamespaceSearch = 1

Vim automagically adds the " comment character to all lines. How do I get rid of this and have it paste as it is?

What I'm getting after the paste in Vim:

 66     " OmniCppComplete
 67     " let OmniCpp_NamespaceSearch = 1

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

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

发布评论

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

评论(4

倾城°AllureLove 2024-12-16 12:34:31

两个主要选项:

  • 直接从寄存器放入,无需进入插入模式,使用  "+p
    • " 表示“使用以下寄存器”;
    • + 指剪贴板,
    • p 表示放置!

如果您使用的是在 Linux 中单击鼠标中键选择粘贴,请使用 * 而不是 + 来引用它,

  • 在进入插入模式进行粘贴之前,运行 :set Paste。使用 :set nopaste 退出插入模式后将其关闭。

Two main options:

  • Put directly from the register without ever entering insert mode, using  "+p
    • " means "use the following register";
    • + refers to the clipboard, and
    • p for put!

Should you be using the middle click selection paste in Linux, use * instead of + to refer to it.

  • Before entering insert mode to paste, run :set paste. Turn it off once you leave insert mode with :set nopaste.
暖树树初阳… 2024-12-16 12:34:31

在 Vim 中进入 :set Paste 模式。然后按 Ctrl + Shift + V

它会起作用的。

不要通过编辑和粘贴来粘贴。这是行不通的。

In Vim go to the mode :set paste. Then press Ctrl + Shift + V.

It would work.

Don't paste by going to edit and paste. It won't work.

眼泪也成诗 2024-12-16 12:34:31

到目前为止,每个人都没有抓住重点。当您开始新行时(无论是粘贴还是键入),Vim 会自动插入注释字段。

您至少使用 r 和 o 选项设置了格式选项。要查看您的设置,请键入

:set formatoptions?

要删除这些选项,请键入

:set formatoptions=

粘贴,然后就会按照您期望的方式工作。

键入

:help fo-table

以查看格式选项中的字母各自的含义。

Everybody so far is missing the point. Vim is automatically inserting the comment field when you start a new line (whether it is from a paste or from your typing).

You have formatoptions set with at least the r and maybe the o option. To see your settings, type

:set formatoptions?

To remove those options, type

:set formatoptions=

Paste will then work the way you expect.

Type

:help fo-table

to see what the letters in formatoptions each mean.

转身泪倾城 2024-12-16 12:34:31

当您在 UI 中使用 Vim 时,请转到菜单终端重置和清除。然后尝试粘贴您拥有的代码。

它将按原样粘贴。

When you are working on Vim in the UI, go to menu TerminalReset and clear. Then try to paste the code that you have.

It would get pasted as it is.

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