source: chapter06/vim.xml@ 62c3dff

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 62c3dff was 62c3dff, checked in by Matthew Burgess <matthew@…>, 19 years ago

Fix a couple of minor grammar issues (Chris Staub)

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6615 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 11.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 <!ENTITY % patches-entities SYSTEM "../patches.ent">
5 %general-entities;
6 %patches-entities;
7]>
8<sect1 id="ch-system-vim" role="wrap">
9<title>Vim-&vim-version;</title>
10<?dbhtml filename="vim.html"?>
11
12<indexterm zone="ch-system-vim"><primary sortas="a-Vim">Vim</primary></indexterm>
13
14<sect2 role="package"><title/>
15<para>The Vim package contains a powerful text editor.</para>
16
17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>0.4 SBU</seg><seg>38.0 MB</seg></seglistitem>
21</segmentedlist>
22
23<segmentedlist>
24<segtitle>&dependencies;</segtitle>
25<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
26GCC, Glibc, Grep, Make, Ncurses, and Sed</seg></seglistitem>
27</segmentedlist>
28
29<tip>
30<title>Alternatives to Vim</title>
31<para>If you prefer another editor&mdash;such as Emacs, Joe, or
32Nano&mdash;please refer to <ulink url="&blfs-root;view/svn/postlfs/editors.html"/>
33for suggested installation instructions.</para>
34</tip>
35</sect2>
36
37<sect2 role="installation">
38<title>Installation of Vim</title>
39
40<para>First, unpack both
41<filename>vim-&vim-version;.tar.bz2</filename> and (optionally)
42<filename>vim-&vim-version;-lang.tar.gz</filename> archives into the
43same directory. Then, change the default location of the
44<filename>vimrc</filename> configuration file to <filename
45class="directory">/etc</filename>:</para>
46
47<screen><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; src/feature.h</userinput></screen>
48
49<para>Vim has two known security vulnerabilities that have already been
50addressed upstream. The following patch fixes the problems:</para>
51
52<screen><userinput>patch -Np1 -i ../&vim-security_fix-patch;</userinput></screen>
53
54<para>Now prepare Vim for compilation:</para>
55
56<screen><userinput>./configure --prefix=/usr --enable-multibyte</userinput></screen>
57
58<para>The optional but highly recommended
59<parameter>--enable-multibyte</parameter> switch includes support for
60editing files in multibyte character encodings into
61<command>vim</command>. This is needed if using a locale with
62a multibyte character set. This switch is also helpful to be able to
63edit text files initially created in Linux distributions like Fedora
64Core that use UTF-8 as a default character set.</para>
65
66<para>Compile the package:</para>
67
68<screen><userinput>make</userinput></screen>
69
70<para>To test the results, issue: <userinput>make test</userinput>. However,
71this test suite outputs a lot of binary data to the screen, which can cause
72issues with the settings of the current terminal. This can be resolved by
73redirecting the output to a log file.</para>
74
75<para>Install the package:</para>
76
77<screen><userinput>make install</userinput></screen>
78
79<para>Many users are used to using <command>vi</command> instead of
80<command>vim</command>. To allow execution of <command>vim</command>
81when users habitually enter <command>vi</command>, create a
82symlink:</para>
83
84<screen><userinput>ln -s vim /usr/bin/vi</userinput></screen>
85
86<para>If an X Window System is going to be installed on the LFS
87system, it may be necessary to recompile Vim after installing X. Vim
88comes with a GUI version of the editor that requires X and some
89additional libraries to be installed. For more information on this
90process, refer to the Vim documentation and the Vim installation page
91in the BLFS book at <ulink
92url="&blfs-root;view/svn/postlfs/editors.html#postlfs-editors-vim"/>.</para>
93
94</sect2>
95
96<sect2 id="conf-vim" role="configuration"><title>Configuring Vim</title>
97<indexterm zone="conf-vim"><primary sortas="e-/etc/vim">/etc/vim</primary></indexterm>
98
99<para>By default, <command>vim</command> runs in vi-incompatible mode. This may
100be new to users who have used other editors in the past. The
101<quote>nocompatible</quote> setting is included below to highlight the fact that
102a new behavior is being used. It also reminds those who would change to
103<quote>compatible</quote> mode that it should be the first setting in the
104configuration file. This is necessary because it changes other settings, and
105overrides must come after this setting. Create a default <command>vim</command>
106configuration file by running the following:</para>
107
108<screen><userinput>cat &gt; /etc/vimrc &lt;&lt; "EOF"
109<literal>" Begin /etc/vimrc
110
111set nocompatible
112set backspace=2
113syntax on
114if (&amp;term == "iterm") || (&amp;term == "putty")
115 set background=dark
116endif
117
118" End /etc/vimrc</literal>
119EOF</userinput></screen>
120
121<para>The <parameter>set nocompatible</parameter> makes
122<command>vim</command> behave in a more useful way (the default) than
123the vi-compatible manner. Remove the <quote>no</quote> to keep the
124old <command>vi</command> behavior. The <parameter>set
125backspace=2</parameter> allows backspacing over line breaks,
126autoindents, and the start of insert. The <parameter>syntax
127on</parameter> enables vim's syntax highlighting. Finally, the
128<emphasis>if</emphasis> statement with the <parameter>set
129background=dark</parameter> corrects <command>vim</command>'s guess
130about the background color of some terminal emulators. This gives the
131highlighting a better color scheme for use on the black background of
132these programs.</para>
133
134<para>Documentation for other available options can be obtained by
135running the following command:</para>
136
137<screen><userinput>vim -c ':options'</userinput></screen>
138
139</sect2>
140
141<sect2 id="contents-vim" role="content"><title>Contents of Vim</title>
142
143<segmentedlist>
144<segtitle>Installed programs</segtitle>
145<seglistitem><seg>efm_filter.pl, efm_perl.pl, ex (link to vim), less.sh, mve.awk,
146pltags.pl, ref, rview (link to vim), rvim (link to vim), shtags.pl, tcltags, vi (link to vim),
147view (link to vim), vim, vim132, vim2html.pl, vimdiff (link to vim), vimm, vimspell.sh,
148vimtutor, and xxd</seg></seglistitem>
149</segmentedlist>
150
151<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
152<?dbfo list-presentation="list"?>
153<?dbhtml list-presentation="table"?>
154
155<varlistentry id="efm_filter.pl">
156<term><command>efm_filter.pl</command></term>
157<listitem>
158<para>A filter for creating an error file that can be read by <command>vim</command></para>
159<indexterm zone="ch-system-vim efm_filter.pl"><primary sortas="b-efm_filter.pl">efm_filter.pl</primary></indexterm>
160</listitem>
161</varlistentry>
162
163<varlistentry id="efm_perl.pl">
164<term><command>efm_perl.pl</command></term>
165<listitem>
166<para>Reformats the error messages of the
167Perl interpreter for use with the <quote>quickfix</quote> mode of <command>vim</command></para>
168<indexterm zone="ch-system-vim efm_perl.pl"><primary sortas="b-efm_perl.pl">efm_perl.pl</primary></indexterm>
169</listitem>
170</varlistentry>
171
172<varlistentry id="ex">
173<term><command>ex</command></term>
174<listitem>
175<para>Starts <command>vim</command> in ex mode</para>
176<indexterm zone="ch-system-vim ex"><primary sortas="b-ex">ex</primary></indexterm>
177</listitem>
178</varlistentry>
179
180<varlistentry id="less.sh">
181<term><command>less.sh</command></term>
182<listitem>
183<para>A script that starts <command>vim</command> with less.vim</para>
184<indexterm zone="ch-system-vim less.sh"><primary sortas="b-less.sh">less.sh</primary></indexterm>
185</listitem>
186</varlistentry>
187
188<varlistentry id="mve.awk">
189<term><command>mve.awk</command></term>
190<listitem>
191<para>Processes <command>vim</command> errors</para>
192<indexterm zone="ch-system-vim mve.awk"><primary sortas="b-mve.awk">mve.awk</primary></indexterm>
193</listitem>
194</varlistentry>
195
196<varlistentry id="pltags.pl">
197<term><command>pltags.pl</command></term>
198<listitem>
199<para>Creates a tags file for Perl code for use by <command>vim</command></para>
200<indexterm zone="ch-system-vim pltags.pl"><primary sortas="b-pltags.pl">pltags.pl</primary></indexterm>
201</listitem>
202</varlistentry>
203
204<varlistentry id="ref">
205<term><command>ref</command></term>
206<listitem>
207<para>Checks the spelling of arguments</para>
208<indexterm zone="ch-system-vim ref"><primary sortas="b-ref">ref</primary></indexterm>
209</listitem>
210</varlistentry>
211
212<varlistentry id="rview">
213<term><command>rview</command></term>
214<listitem>
215<para>Is a restricted version of <command>view</command>; no shell
216commands can be started and <command>view</command> cannot be suspended</para>
217<indexterm zone="ch-system-vim rview"><primary sortas="b-rview">rview</primary></indexterm>
218</listitem>
219</varlistentry>
220
221<varlistentry id="rvim">
222<term><command>rvim</command></term>
223<listitem>
224<para>Is a restricted version of <command>vim</command>; no shell
225commands can be started and <command>vim</command> cannot be suspended</para>
226<indexterm zone="ch-system-vim rvim"><primary sortas="b-rvim">rvim</primary></indexterm>
227</listitem>
228</varlistentry>
229
230<varlistentry id="shtags.pl">
231<term><command>shtags.pl</command></term>
232<listitem>
233<para>Generates a tags file for Perl scripts</para>
234<indexterm zone="ch-system-vim shtags.pl"><primary sortas="b-shtags.pl">shtags.pl</primary></indexterm>
235</listitem>
236</varlistentry>
237
238<varlistentry id="tcltags">
239<term><command>tcltags</command></term>
240<listitem>
241<para>Generates a tags file for TCL code</para>
242<indexterm zone="ch-system-vim tcltags"><primary sortas="b-tcltags">tcltags</primary></indexterm>
243</listitem>
244</varlistentry>
245
246<varlistentry id="view">
247<term><command>view</command></term>
248<listitem>
249<para>Starts <command>vim</command> in read-only mode</para>
250<indexterm zone="ch-system-vim view"><primary sortas="b-view">view</primary></indexterm>
251</listitem>
252</varlistentry>
253
254<varlistentry id="vi">
255<term><command>vi</command></term>
256<listitem>
257<para>Is the editor</para>
258<indexterm zone="ch-system-vim vi"><primary sortas="b-vi">vi</primary></indexterm>
259</listitem>
260</varlistentry>
261
262<varlistentry id="vim">
263<term><command>vim</command></term>
264<listitem>
265<para>Is the editor</para>
266<indexterm zone="ch-system-vim vim"><primary sortas="b-vim">vim</primary></indexterm>
267</listitem>
268</varlistentry>
269
270<varlistentry id="vim132">
271<term><command>vim132</command></term>
272<listitem>
273<para>Starts <command>vim</command> with the terminal in 132-column mode</para>
274<indexterm zone="ch-system-vim vim132"><primary sortas="b-vim132">vim132</primary></indexterm>
275</listitem>
276</varlistentry>
277
278<varlistentry id="vim2html.pl">
279<term><command>vim2html.pl</command></term>
280<listitem>
281<para>Converts Vim documentation to HypterText Markup Language (HTML)</para>
282<indexterm zone="ch-system-vim vim2html.pl"><primary sortas="b-vim2html.pl">vim2html.pl</primary></indexterm>
283</listitem>
284</varlistentry>
285
286<varlistentry id="vimdiff">
287<term><command>vimdiff</command></term>
288<listitem>
289<para>Edits two or three versions of a file with <command>vim</command> and show differences</para>
290<indexterm zone="ch-system-vim vimdiff"><primary sortas="b-vimdiff">vimdiff</primary></indexterm>
291</listitem>
292</varlistentry>
293
294<varlistentry id="vimm">
295<term><command>vimm</command></term>
296<listitem>
297<para>Enables the DEC locator input model on a remote terminal</para>
298<indexterm zone="ch-system-vim vimm"><primary sortas="b-vimm">vimm</primary></indexterm>
299</listitem>
300</varlistentry>
301
302<varlistentry id="vimspell.sh">
303<term><command>vimspell.sh</command></term>
304<listitem>
305<para>Spell checks a file and generates the syntax statements necessary to
306highlight in <command>vim</command>. This script requires the old Unix
307<command>spell</command> command, which is provided neither in LFS nor in
308BLFS</para>
309<indexterm zone="ch-system-vim vimspell.sh"><primary sortas="b-vimspell.sh">vimspell.sh</primary></indexterm>
310</listitem>
311</varlistentry>
312
313<varlistentry id="vimtutor">
314<term><command>vimtutor</command></term>
315<listitem>
316<para>Teaches the basic keys and commands of <command>vim</command></para>
317<indexterm zone="ch-system-vim vimtutor"><primary sortas="b-vimtutor">vimtutor</primary></indexterm>
318</listitem>
319</varlistentry>
320
321<varlistentry id="xxd">
322<term><command>xxd</command></term>
323<listitem>
324<para>Creates a hex dump of the given file; it can
325also do the reverse, so it can be used for binary patching</para>
326<indexterm zone="ch-system-vim xxd"><primary sortas="b-xxd">xxd</primary></indexterm>
327</listitem>
328</varlistentry>
329</variablelist>
330
331</sect2>
332
333</sect1>
334
Note: See TracBrowser for help on using the repository browser.