删除标记' (单引号)

发布于 2024-12-02 18:56:07 字数 140 浏览 0 评论 0原文

我正在尝试删除标记 ' (单引号),但我不知道如何删除。 我正在执行 delm \' 但它不起作用。我也尝试了所有我能想到的组合。

我意识到这更像是一个 Vim 脚本问题,但我在任何地方都找不到它。

I'm trying to delete the mark ' (single quote) but I dont know how.
I'm doing delm \' but it doesn't work. I also tried every combination I could think of.

I realize this is more a Vim script question, but I couldn't find it anywhere.

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

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

发布评论

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

评论(2

北陌 2024-12-09 18:56:07

为什么要删除那个标记?这是一个自动的(摘自:他''):

'' `` 到最后一次跳转之前的位置,或者
最后给出了“m'”或“m`”命令。未设置时
|:keepjumps|使用了命令修饰符。
另请参阅 |恢复位置|。

Why do you want to delete that mark? It's an automatic one (excerpt from :he ''):

'' `` To the position before the latest jump, or where the
last "m'" or "m`" command was given. Not set when the
|:keepjumps| command modifier was used.
Also see |restore-position|.

缘字诀 2024-12-09 18:56:07

不明白这个问题,你在谈论标记(:help mark)吗?如果是这样,'不是一个有效的标记,vim只支持m{a-zA-Z}那么,'是< /em> 一个标记,但不是可以删除/更改的标记。

' 在 vi​​m 中具有特殊含义(:help ''):

''  ``          To the position before the latest jump, or where the
            last "m'" or "m`" command was given.

Don't understand the question, are you talking about markers (:help mark)? If so, ' is not a valid marker, vim only supports m{a-zA-Z} Well, ' is a marker but not a one you can delete/change.

' has special meaning in vim (:help ''):

''  ``          To the position before the latest jump, or where the
            last "m'" or "m`" command was given.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文