-
Notifications
You must be signed in to change notification settings - Fork 28
/
learn-vi-53-Mark.html
59 lines (53 loc) · 5.35 KB
/
learn-vi-53-Mark.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
50
51
52
53
54
55
56
57
58
59
<!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学习笔记 标记(Mark)</title>
</head>
<body>
<h1>VIM学习笔记 标记(Mark)</h1>
<p>我们可以对文本进行标记,以方便在文档的不同位置间跳转。</p>
<h2 class="article"><a id="mark">创建标记</a></h2>
<p>将光标移到某一行,使用<code class="inset">ma</code>命令进行标记。其中,<code class="inset">m</code>是标记命令,<i>a</i>是所做标记的名称。</p>
<p>可以使用小写字母a-z或大写字母A-Z中的任意一个做为标记名称。小写字母的标记,仅用于当前缓冲区;而大写字母的标记,则可以跨越不同的缓冲区。例如,你正在编辑File1,但仍然可以使用<code class="inset">'A</code>命令,移动到File2中创建的标记A。</p>
<h2 class="article"><a id="mark-jump">跳转标记</a></h2>
<p>创建标记后,可以使用<code class="inset">'a</code>命令,移动到指定标记行的首个非空字符。这里<code class="inset">'</code>是单引号(apostrophe)。使用<code class="inset">''</code>命令,可以用移动到上一个标记行的首个非空字符。</p>
<p>使用<code class="inset">`a</code>命令,可以移到所做标记时的光标位置。这里<code class="inset">`</code>是反引号(Backquote,也就是数字键1左边的那一个)。使用<code class="inset">``</code>命令,可以移到上一个标记的光标位置。</p>
<h2 class="article"><a id="marks">列示标记</a></h2>
<p>利用<code class="inset">:marks</code>命令,可以列出所有标记。这其中也包括一些系统内置的特殊标记(Special marks):</p>
<p><a href="https://www.flickr.com/photos/yyq123/5821468116/" title="vim - marks by yyq123, on Flickr"><img src="http://farm6.static.flickr.com/5192/5821468116_704ac04565.jpg" width="500" height="355" alt="vim - marks" /></a></p>
<table summary="Special Marks" border="0">
<col span="1" style="background-color:lightgray;font-weight:bold;"/>
<tbody>
<tr><td>. </td><td>最近编辑的位置</td></tr>
<tr><td>0-9 </td><td>最近使用的文件</td></tr>
<tr><td>∧ </td><td>最近插入的位置</td></tr>
<tr><td>' </td><td>上一次跳转前的位置</td></tr>
<tr><td>" </td><td>上一次退出文件时的位置</td></tr>
<tr><td>[ </td><td>上一次修改的开始处</td></tr>
<tr><td>] </td><td>上一次修改的结尾处</td></tr>
</tbody>
</table>
<h2 class="article"><a id="delmarks">删除标记</a></h2>
<p>如果删除了做过标记的文本行,那么所做的标记也就不存了。我们不仅可以利用标记来快速移动,而且还可以使用标记来删除文本,例如在某一行用<code class="inset">ma</code>做了标记,然后就可以使用<code class="inset">d'a</code>来删掉这一行。当然,我们也可以使用<code class="inset">y'a</code>命令就可以来复制这一行了。</p>
<p>使用<code class="inset">:delmarks a b c</code>命令,可以删除某个或多个标记;而<code class="inset">:delmarks!</code> 命令,则会删除所有标记。</p>
<p>利用<code class="inset">:help mark-motions</code>命令,可以查看关于标记的更多帮助信息。</p>
<h2 class="article"><a id="plugin-vim-signature">plugin: vim-signature</a></h2>
<p><a title="vim-signature" href="https://github.com/kshenoy/vim-signature">vim-signature</a>插件用于在屏幕最左侧显示标记。使用以下命令,可以定义标记的显示风格:</p>
<p><a href="https://yyq123.github.io/learn-vim/images/plugin_vim-signature.png" title="plugin_vim-signature"><img src="https://yyq123.github.io/learn-vim/images/plugin_vim-signature.png" alt="plugin_vim-signature" width="500" height="58" /></a></p>
<p>使用<code class="inset">:help Signature</code>命令,可以查看vim-signature插件定义的快捷键,用于在标记间快速移动。</p>
<table summary="Commands" border="2" frame="hsides" rules="all" cellspacing="0" cellpadding="3">
<caption>命令小结</caption>
<tr><td><code class="inset">m</code></td><td>创建标记</td></tr>
<tr><td><code class="inset">'</code></td><td>移动到标记的文本行首</td></tr>
<tr><td><code class="inset">`</code></td><td>移动到标记的光标位置</td></tr>
<tr><td><code class="inset">:marks</code></td><td>列示所有标记</td></tr>
<tr><td><code class="inset">:delmarks</code></td><td>删除指定标记</td></tr>
<tr><td><code class="inset">:delmarks!</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-52-Abbreviation.html">上一篇</a> |<a title="笔记列表" href="http://yyq123.github.com/learn-vim/learn-vi-00-00-TOC.html"> 目录 </a>| <a title="模板" href="http://yyq123.github.io/learn-vim/learn-vi-61-Template.html">下一篇</a>></span></p>
</body>
</html>
plugin_vim-signaturplugin_vim-signaturee