vimのCTRL + Vの機能は何ですか?

vimのCTRL + Vの機能は何ですか?

vimモードでinsertCTRL + Vを押すと、x mode (^[,^D...)Escキーなどの特定のキーを押したときに終了する^[か、で始まる別のキーが表示される状態に閉じ込められます^。私のエディタでも緑に変わります。

これは何であり、何のためですか?

ベストアンサー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。試してCtrlVCtrlVくださいCtrlVCtrlShiftV

おすすめ記事