Vim 中的 Ctl-Del Like

发布于 2024-10-02 01:01:04 字数 240 浏览 3 评论 0原文

我真的很喜欢 Vim 插入模式下的 CTRL-W 键,但我还需要类似 CTRL-Del 的东西在正常编辑中。知道这是否存在,或者如何实施吗?

另外,对于 CTRL-H 来说类似的事情怎么样?!我的意思是类似于 Del 键,但与 CTRL-H 一样简单。

I really like the CTRL-W key in Vim insert mode, but I also need something like CTRL-Del in normal editing. Any idea if this exist, or how to implement it?

Also, how about a similar thing for CTRL-H?! I mean something exactly like Del key, but as easy as CTRL-H.

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

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

发布评论

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

评论(2

[浮城] 2024-10-09 01:01:04

正常模式下的 dW 与 CTRL+Del 的行为最接近。

如果您确实想要在插入模式下删除类似的内容,为什么不直接为其创建一个映射呢?

:inoremap <C-J> <C-O>x

dW in normal mode is the closest to CTRL+Del behaviour.

If you really want something like Delete in Insert mode, why not just make a mapping for it?

:inoremap <C-J> <C-O>x
情愿 2024-10-09 01:01:04

dw 会弄乱“stuff secondaryword”和“stuffsecondword”。

我使用 ce 效果很好。

<c-o>dw will mess in "stuf<cursor>f secondword" and in "stuff<cursor> secondword".

I use <space><esc>ce which works well.

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