我知道我可以通过在INSERT模式下按插入来完成此操作,但这需要一些拉伸。有没有更方便的快捷方式直接从NORMAL模式进入REPLACE模式?
答案 0 :(得分:133)
来自ViM手册:
5. Replace mode *Replace* *Replace-mode* *mode-replace* Enter Replace mode with the "R" command in normal mode.
当然,您可以将任意键映射到R
,例如通过执行
:map <F5> R
答案 1 :(得分:49)
您可以按 R 进入REPLACE模式。
答案 2 :(得分:14)
R
带您进入替换模式。
答案 3 :(得分:10)
您必须按R才能进入替换模式。为此,您必须首先处于非编辑模式
答案 4 :(得分:0)
在正常模式下,按 Shift + R 。
r 将替换单个字符。