Vim 中的 Ctl-Del Like
我真的很喜欢 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正常模式下的 dW 与 CTRL+Del 的行为最接近。
如果您确实想要在插入模式下删除类似的内容,为什么不直接为其创建一个映射呢?
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?
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.