删除标记' (单引号)
我正在尝试删除标记 '
(单引号),但我不知道如何删除。 我正在执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么要删除那个标记?这是一个自动的(摘自
:他''
):Why do you want to delete that mark? It's an automatic one (excerpt from
:he ''
):不明白这个问题,你在谈论标记(
:help mark
)吗?如果是这样,'
不是一个有效的标记,vim只支持m{a-zA-Z}
那么,'
是< /em> 一个标记,但不是可以删除/更改的标记。'
在 vim 中具有特殊含义(:help ''
):Don't understand the question, are you talking about markers (
:help mark
)? If so,'
is not a valid marker, vim only supportsm{a-zA-Z}
Well,'
is a marker but not a one you can delete/change.'
has special meaning in vim (:help ''
):