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.
我试过了
:inoremap ^b <Del> :inoremap ^b Del :imap ^b <Del> :imap ^b Del
他们似乎都插入了一个^B字符。
^B
我在 Windows 7x64 上使用 gVim7
您的控制字符格式不是 vim 所期望的。您想<C-x>在映射中使用控制字符。
<C-x>
:inoremap <C-b> <Del>
正如您当前的映射所代表的那样,vim 是映射^,后跟Shift+b到Del。