source: chapter06/vim.xml@ 698a753

Last change on this file since 698a753 was c2133bc, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Upgraded to DocBook 4.4 DTD

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4605 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

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