-
|
Beta Was this translation helpful? Give feedback.
Answered by
Jint-lzxy
Apr 1, 2023
Replies: 2 comments 8 replies
-
@Tgist1024 If you want In normal mode, @CharlesChiuGit's solution should suffice. FYI: *i_CTRL-V*
CTRL-V Insert next non-digit literally. 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.
For special keys, the CTRL modifier may be included into the
key to produce a control character. If there is no control
character for the key then its |key-notation| is inserted.
Note: When CTRL-V is mapped (e.g., to paste text) you can
often use CTRL-Q instead |i_CTRL-Q|.
*i_CTRL-Q*
CTRL-Q Same as CTRL-V.
Note: Some terminal connections may eat CTRL-Q, it doesn't
work then. It does work in the GUI. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Jint-lzxy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Tgist1024 If you want
neovim
to interpret your next input literally, you can always use<C-v>
in insert mode (or<C-q>
if<C-v>
is not available). For this situation, you may use the combination<C-v><Tab>
.In normal mode, @CharlesChiuGit's solution should suffice.
FYI: