Vim Surround 在单词周围插入额外的空格

发布于 2025-01-03 03:54:51 字数 206 浏览 1 评论 0原文

当我选择单词并使用带有 S 的环绕插件时:

foobar

它变成了

( foobar )

如何删除多余的空格,以便它变成

(foobar)

我应该在我的设置中放置什么?

When I select the word and use the surround plugin with S:

foobar

It becomes

( foobar )

How do I remove the extra spaces, so that it becomes

(foobar)

What should I place in my settings?

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

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

发布评论

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

评论(3

半夏半凉 2025-01-10 03:54:51

如果您输入 S(,它将被空格包围。但是,如果您使用结束符 ) 而不是 S ) 它不会被空格包围。

这当然适用于所有括号对环境,<> [] {} (),不仅仅是 (),尽管 S< 的行为是它所期望的标签封装,因此只有 S> 能够作为 <> 包围。

If you type S(, it will be surrounded by spaces. However if you use the closing ) instead S) it will not be surrounded by spaces.

This applies of course to all bracket pair surroundings, <> [] {} (), not merely to (), although the behavior of S< is such that it expects a tag enclosure so only S> is able to surround as <>.

仲春光 2025-01-10 03:54:51

当您使用环绕插件时,您可以使用:

cs)而不是cs(来环绕没有空格:)。

When you use the surround plugin you can use:

cs) instead of cs( to surround without space :).

ゝ偶尔ゞ 2025-01-10 03:54:51

您可以覆盖默认行为并使 ( 包围起来不带空格,lua 中的示例如下:

return {
  {
    "kylechui/nvim-surround",
    -- tag = "*", -- Use for stability; omit to use `main` branch for the latest features
    config = function()
      require("nvim-surround").setup {
        surrounds = {
          ["("] = {
            add = function() return { { "(" }, { ")" } } end,
          },
          ["{"] = {
            add = function() return { { "{" }, { "}" } } end,
          },
          ["["] = {
            add = function() return { { "[" }, { "]" } } end,
          },
          ["<"] = {
            add = function() return { { "<" }, { ">" } } end,
          },
        },
      }
    end,
  },
}

You can overwrite the default behavior and make ( surround without spaces, an example here in lua:

return {
  {
    "kylechui/nvim-surround",
    -- tag = "*", -- Use for stability; omit to use `main` branch for the latest features
    config = function()
      require("nvim-surround").setup {
        surrounds = {
          ["("] = {
            add = function() return { { "(" }, { ")" } } end,
          },
          ["{"] = {
            add = function() return { { "{" }, { "}" } } end,
          },
          ["["] = {
            add = function() return { { "[" }, { "]" } } end,
          },
          ["<"] = {
            add = function() return { { "<" }, { ">" } } end,
          },
        },
      }
    end,
  },
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文