-
Notifications
You must be signed in to change notification settings - Fork 28
/
learn-vi-23-Wrap.html
51 lines (46 loc) · 5.11 KB
/
learn-vi-23-Wrap.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
<!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学习笔记 折行(Wrap)</title>
</head>
<body>
<p style="font-weight:bold; border-bottom:1px solid lightgray; border-left:6px solid lightgray; padding:0 0 3px 5px">折行显示</p>
<p>在默认情况下,Vim会自动折行––将超出屏幕范围的文本打断并显示在下一行。我们也可以通过以下命令,取消自动折行––超出屏幕范围的文本将不会被显示,你需要向句末移动光标,以使屏幕水平滚动,查看一行的完整内容。</p>
<p style="text-indent:2em"><code class="inset">:set nowrap</code></p>
<p>默认设置<code class="inset">set sidescroll=0</code>之下,当光标到达屏幕边缘时,将自动扩展显示1/2屏幕的文本。</p>
<p><a href="https://www.flickr.com/photos/yyq123/33157397023/in/dateposted/" title="sidescroll-off"><img src="https://c1.staticflickr.com/3/2877/33157397023_cd80a7658b_o.gif" width="500" height="265" alt="sidescroll-off"></a></p>
<p>通过使用<code class="inset">set sidescroll=1</code>设置,可以实现更加平滑的逐个字符扩展显示。</p>
<p><a href="https://www.flickr.com/photos/yyq123/33970712205/in/dateposted/" title="sidescroll-on"><img src="https://c1.staticflickr.com/3/2837/33970712205_6ccfdd340d_o.gif" width="500" height="265" alt="sidescroll-on"></a></p>
<p>可以使用以下命令,恢复Vim的自动折行:</p>
<p style="text-indent:2em"><code class="inset">:set wrap</code></p>
<p style="font-weight:bold; border-bottom:1px solid lightgray; border-left:6px solid lightgray; padding:0 0 3px 5px">折行形式</p>
<p>我们可以告诉Vim在合适的地方折行:</p>
<p style="text-indent:2em"><code class="inset">:set linebreak</code></p>
<p>所谓合适的地方,是由<em>breakat</em>选项中的字符来确定的。在默认的情况下,这些字符是“^I!@*-+_;:,./?”。如果我们不希望在下划线处打断句子,只要用下面的命令将“_”从这个列表移除就可以了:</p>
<p style="text-indent:2em"><code class="inset">:set breakat-=_</code></p>
<p>如果一行被打断,Vim可能不会在句子连接处显示任何内容。我们可以通过设置<em>showbreak</em>选项,来显示所希望的指示信息:</p>
<p style="text-indent:2em"><code class="inset">:set showbreak=-></code></p>
<p>我们可以使用以下命令,取消自定义折行:</p>
<p style="text-indent:2em"><code class="inset">:set nolinebreak</code></p>
<p style="font-weight:bold; border-bottom:1px solid lightgray; border-left:6px solid lightgray; padding:0 0 3px 5px">在折行内移动</p>
<p>如果设置了wrap选项,那么很长的行将被折回并连续显示在屏幕上。但使用<code class="inset">j</code>命令,将移动屏幕上显示为多行的一行;而如果希望在折行内向下移动,则需要使用<code class="inset">gj</code>或<code class="inset">g<Down></code>命令。同理,<code class="inset">gk</code>或<code class="inset">g<Up></code>命令,用于向上移动。</p>
<p><a href="https://www.flickr.com/photos/yyq123/5495434173/" title="j-gj by yyq123, on Flickr"><img src="https://farm6.static.flickr.com/5013/5495434173_f2cc3255ba.jpg" width="500" height="118" alt="j-gj" /></a></p>
<p>在<a href="https://bit.ly/vim-vimrc" title="vimrc">vimrc配置文件</a>中,定义以下<a href="https://bit.ly/vim-map" title="Map">键盘映射</a>,可以使<code class="inset">j</code>和<code class="inset">k</code>命令自动判断是在折行内或是在折行间进行移动:</p>
<p><code class="inset">
noremap <silent> <expr> j (v:count == 0 ? 'gj' : 'j')<br />
noremap <silent> <expr> k (v:count == 0 ? 'gk' : 'k')
</code></p>
<p>根据以下屏幕录像,当点击向下移动键时,光标会直接忽略折行,而跳转到下一行;而点击j键时,则可以在折行内移动。</p>
<p><a href="http://yyq123.github.io/learn-vim/images/j-gj.gif" title="j-gj"><img src="http://yyq123.github.io/learn-vim/images/j-gj-500.gif" alt="j-gj" /></a></p>
<table summary="Commands" border="2" frame="hsides" rules="all" cellspacing="0" cellpadding="3">
<caption>命令小结</caption>
<tr><td><code class="inset">:set wrap</code></td><td>启用自动折行</td></tr>
<tr><td><code class="inset">:set nowrap</code></td><td>取消自动折行</td></tr>
<tr><td><code class="inset">:set linebreak</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://bit.ly/vim-LineFeed">上一篇</a> |<a title="笔记列表" href="http://yyq123.github.com/learn-vim/learn-vi-00-List.html"> 目录 </a>| <a title="拼写检查" href="http://bit.ly/vim-SpellCheck">下一篇</a>></span></p>
</body>
</html>