-
Notifications
You must be signed in to change notification settings - Fork 28
/
learn-vi-44-ReplaceMode.html
49 lines (43 loc) · 5.45 KB
/
learn-vi-44-ReplaceMode.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh" xml:lang="zh">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="learn-vi.css" />
<title>VIM学习笔记 替换模式(Replace Mode)</title>
</head>
<body>
<h1>VIM学习笔记 替换模式(Replace Mode)</h1>
<h2 class="article"><a id="replace-mode-enter">进入替换模式</a></h2>
<p>使用大写<code class="inset">R</code>命令,将进入替换模式(屏幕底部显示“--REPLACE--”)。此时新输入的文本将直接替代/覆盖已经存在的内容,直至点击<kbd>ESC</kbd>键返回常规模式。</p>
<p style="color:gray; font-size:0.6em"><a href="http://yyq123.github.io/learn-vim/images/ReplaceMode_Edit.gif" title="ReplaceMode_Edit"><img src="http://yyq123.github.io/learn-vim/images/ReplaceMode_Edit.gif" alt="ReplaceMode_Edit.gif" width="500" height="86" /></a></br>Source: medium.com/vim-drops</p>
<p>使用小写<code class="inset">r</code>命令,将进入单字符替换模式,此时新输入的字符将替代光标之下的当前字符,然后自动返回到常规模式。</p>
<p>通过在r命令中增加数字前缀,可以一次性替换多个字符。例如,将光标定位到“||”字符处,然后执行<code class="inset">2r&</code>命令,可以将其替换为“&&”。</p>
<p>使用<code class="inset">gR</code>命令,将进入虚拟替换模式(virtual replace mode)(屏幕底部显示“--VREPLACE--”),其与替换模式最主要的区别在于,对<Tab>键和换行符的不同处理方式。</p>
<p><strong>区别1</strong>:对于<Tab>键的处理方式</p>
<p>在替换模式(REPLACE)下,在原有<Tab>键处输入字母'a',将直接替代<Tab>键所占用的所有空格的位置,文本格式遭到破坏:</p>
<p style="color:gray; font-size:0.6em"><a href="http://yyq123.github.io/learn-vim/images/REPLACE_A.gif" title="REPLACE_A"><img src="http://yyq123.github.io/learn-vim/images/REPLACE_A.gif" alt="REPLACE_A" /></a></br>Source: medium.com/vim-drops</p>
<p>在虚拟替换模式(VREPLACE)下,在原有<Tab>键处输入字母'a',将仅仅替代单个空格,文本格式保持不变:</p>
<p style="color:gray; font-size:0.6em"><a href="http://yyq123.github.io/learn-vim/images/VREPLACE_A.gif" title="VREPLACE_A"><img src="http://yyq123.github.io/learn-vim/images/VREPLACE_A.gif" alt="VREPLACE_A" /></a></br>Source: medium.com/vim-drops</p>
<p>从以上实例可以发现:替换模式(REPLACE)将<Tab>键作为一个整体来处理(不管其真实占用多少个空格位置);而虚拟替换模式(VREPLACE)则将<Tab>键拆分为多个独立的空格来分别处理。如果文本以<Tab>分隔排布,在编辑过程中希望保持原有的文本缩进和排版格式,那么建议使用虚拟替换模式。 </p>
<p><strong>区别2</strong>:对于<NL>换行的处理方式</p>
<p>在替换模式(REPLACE)下,输入<Enter>回车键将增加新行:</p>
<p style="color:gray; font-size:0.6em"><a href="http://yyq123.github.io/learn-vim/images/REPLACE_NL.gif" title="REPLACE_NL"><img src="http://yyq123.github.io/learn-vim/images/REPLACE_NL.gif" alt="REPLACE_NL" width="250" height="229" /></a></p>
<p>在虚拟替换模式(VREPLACE)下,输入<Enter>回车键将用新行替代当前行内容(即清空当前行):</p>
<p style="color:gray; font-size:0.6em"><a href="http://yyq123.github.io/learn-vim/images/VREPLACE_NL.gif" title="VREPLACE_NL"><img src="http://yyq123.github.io/learn-vim/images/VREPLACE_NL.gif" alt="VREPLACE_NL" width="250" height="229" /></a></p>
<p>使用<code class="inset">gr</code>命令,可以进入单字符虚拟替换模式。在替换光标下的当前字符之后,将自动返回到常规模式。</p>
<p>请注意,只有包含+vreplace特性的Vim版本才支持虚拟替换模式。请使用<code class="inset">:version</code>命令,查看特性列表中是否已包括此项。</p>
<p>请使用以下命令,查看关于虚拟替换模式的更多帮助信息:</p>
<p style="text-indent:2em"><code class="inset">:help vreplace-mode</code></p>
<h2 class="article"><a id="replace-mode-exit">退出替换模式</a></h2>
<p>按下<kbd>ESC</kbd>键即可离开替换模式,返回到常规模式。</p>
<table summary="Commands" border="2" frame="hsides" rules="all" cellspacing="0" cellpadding="3">
<caption>命令小结</caption>
<tr><td><code class="inset">R</code></td><td>进入替换模式</td></tr>
<tr><td><code class="inset">r</code></td><td>进入单字符替换模式</td></tr>
<tr><td><code class="inset">gR</code></td><td>进入虚拟替换模式</td></tr>
<tr><td><code class="inset">gr</code></td><td>进入单字符虚拟替换模式</td></tr>
</table>
<p style="border-top:1px solid lightgray"><span style="float:right">Ver: 2.0 | <a href="mailto:[email protected]">YYQ</a></span><span><<a title="插入模式" href="http://yyq123.github.io/learn-vim/learn-vi-42-InsertMode.html">上一篇</a> |<a title="笔记列表" href="http://yyq123.github.com/learn-vim/learn-vi-00-00-TOC.html"> 目录 </a>| <a title="可视化模式(Visual Mode)" href="http://yyq123.github.io/learn-vim/learn-vi-45-VisualMode.html">下一篇</a>></span></p>
</body>
</html>