vim 中 CTRL+V 的作用是什么?

vim 中 CTRL+V 的作用是什么?

在 vim 模式下insert,如果我按 CTRL+V,我就会陷入所谓的状态x mode (^[,^D...),当我按某个键(例如转义键)时,我最终会得到^[或以 . 开头的其他内容^。它在我的编辑器中也变成绿色。

这是什么,有什么用?

答案1

:h i_CTRL-Vi_表示插入模式):

                                                i_CTRL-V
CTRL-V          Insert next non-digit literally.  For special keys, the
                terminal code is inserted.  It's also possible to enter the
                decimal, octal or hexadecimal value of a character
                i_CTRL-V_digit.
                The characters typed right after CTRL-V are not considered for
                mapping.  {Vi: no decimal byte entry}
                Note: When CTRL-V is mapped (e.g., to paste text) you can
                often use CTRL-Q instead i_CTRL-Q.

所以,当你这样做时^v Esc,你实际上是将Esc字符输入到文本中 - Vim 不会做它通常做的事情。该Esc角色通常表示为^[,^存在Ctrl,按下Ctrl[通常相当于按下Esc

Ubuntu ASCII 联机帮助页对于可视化映射很有用:

010   8     08    BS  '\b' (backspace)        110   72    48    H
011   9     09    HT  '\t' (horizontal tab)   111   73    49    I
012   10    0A    LF  '\n' (new line)         112   74    4A    J
013   11    0B    VT  '\v' (vertical tab)     113   75    4B    K
014   12    0C    FF  '\f' (form feed)        114   76    4C    L
015   13    0D    CR  '\r' (carriage ret)     115   77    4D    M
...
033   27    1B    ESC (escape)                133   91    5B    [

在这种情况下Shift没有任何效果,Vim 看到的内容与按 时相同CtrlV。尝试CtrlVCtrlVCtrlVCtrlShiftV

相关内容