Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢在 VIM 中模拟 Windows 上 C-Del/C-Backspace 的正常行为。目前我正在使用:
imap <C-Del> <C-o>dw imap <C-Backspace> <C-o>db
这很接近但并不完美。例如,当试图从行尾删除它时
foo(1, 2)
使用 C-Backspace,会发生这种情况:
foo(1, )
我该如何解决这个问题?
您的 new<C-Backspace>与 internal 相同<C-w>。所以要解决你的问题,你可以
<C-Backspace>
<C-w>
imap <C-Backspace> <C-w>