Vim 中的退格行为

发布于 2024-10-19 05:13:22 字数 1560 浏览 3 评论 0原文

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

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

发布评论

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

评论(2

美人骨 2024-10-26 05:13:22

我相信您想要替换而不是插入模式。按“插入”键一次将使您进入插入模式,但按两次将使您进入替换模式。这应该会给你预期的行为。

I believe you want Replace instead of Insert mode. Hitting the 'insert' key once will put you into Insert mode but hitting it twice will put you into Replace mode. That should give you the expected behaviour.

你与清晨阳光 2024-10-26 05:13:22

要仅将退格键更改为与 vi 兼容的行为,可以将 v 添加到 cpoptions 中,如下所示。

:set cpoptions+=v

这记录在 :help 'cpoptions'

我意识到这是一个非常的答案,但该功能似乎至少从 Vim 7 开始就可用,即第一次提出问题时。

To change only backspace to vi-compatible behavior, one would add v to cpoptions like this

:set cpoptions+=v

This is documented in :help 'cpoptions'.

I realize this is a very late answer but the feature seems to have been available since at least Vim 7 i.e. when the question was first asked.

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