在 Vim 中插入回车符

我正在编辑存储在 Unix 文件中的网络协议框架(\n换行)。我需要插入回车符(U+000D也称为 \r^M)。 当我尝试从剪贴板("+p)粘贴它或使用 Ctrl + Shift + u-000d键入它时,换行符被插入(U+000A)。

正确的做法是什么?

102665 次浏览

Type: ctrl-v ctrl-m

On Windows Use: ctrl-q ctrl-m

Ctrl-V tells vi that the next character typed should be inserted literally and ctrl-m is the keystroke for a carriage return.