vimrc中“inoremap”的含义是什么?

前端之家收集整理的这篇文章主要介绍了vimrc中“inoremap”的含义是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
vimrc示例文件中有一行
inoremap Ctrl-u Ctrl-G u Ctrl-u

inoremap的意思是什么,这行的功能是什么?

vim:help inoremap是非常有意思的:
: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映射.

原文链接:https://www.f2er.com/bash/386674.html

猜你在找的Bash相关文章