source: chapter06/vim.xml@ e5846ef

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 e5846ef was e5846ef, checked in by Archaic <archaic@…>, 19 years ago

Round 2 of several minor wording changes in chapter 6 (matt).

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

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