我在 vim 映射中看到 <cr>
很多,但它有什么作用?
最佳答案
:help key-notation
说:
notation meaning equivalent decimal value(s)
-----------------------------------------------------------------------
<CR> carriage return CTRL-M 13 *carriage-return*
<Return> same as <CR> *<Return>*
<Enter> same as <CR> *<Enter>*
映射通常涉及 Ex 命令,您必须按
<CR>
才能执行它们,以便将其包含在映射中。关于vim - 某些 vim 映射末尾的 <CR> 是什么意思?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22142755/