vim:help inoremap是非常有意思的:
原文链接:https://www.f2er.com/bash/386674.html:ino[remap] {lhs} {rhs} mapmode-i :ino :inoremap :ln[oremap] {lhs} {rhs} mapmode-l :ln :lnoremap :cno[remap] {lhs} {rhs} mapmode-c :cno :cnoremap Map the key sequence {lhs} to {rhs} for the modes where the map command applies. Disallow mapping of {rhs},to avoid nested and recursive mappings. Often used to redefine a command. {not in Vi}
因此,它为^ U显示文件名(^ G,撤消最近的更改(u))的一些插入模式映射,并将缓冲区向上滚动一半屏幕(^ U).
我不知道为什么有人想要这个特定的命令序列,除了演示inoremap功能 – ^ U指的是命令在创建定义时的意义,而不是重新调用重新定义的^ U映射.