Tagging 1.99.1
[linux_from_scratch.git] / BOOK / chapter06 / vim.xml
blob7159413f711f6aa7619b7d89cbcf9f2783936c5a
1 <sect1 id="ch-system-vim" xreflabel="Vim">
2 <title>Installing Vim-&vim-version;</title>
3 <?dbhtml filename="vim.html" dir="chapter06"?>
5 <para>The Vim package contains a powerful text editor.</para>
7 <screen>&buildtime; &vim-time;
8 &diskspace; &vim-compsize;</screen>
10 &aa-vim-down;
11 &aa-vim-dep;
13 <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
15 <sect2>
16 <title>Alternatives to Vim</title>
17 <para>If you prefer another editor -- like Emacs, Joe, or Nano -- to Vim,
18 have a look at <ulink url="&blfs-root;view/stable/postlfs/editors.html"/> for
19 suggested installation instructions.</para>
20 </sect2>
22 <sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
24 <sect2>
25 <title>Installation of Vim</title>
27 <para>First change the default locations of the <filename>vimrc</filename> and
28 <filename>gvimrc</filename> files to <filename
29 class="directory">/etc</filename>.</para>
31 <screen><userinput>echo '#define SYS_VIMRC_FILE "/etc/vimrc"' &gt;&gt; src/feature.h
32 echo '#define SYS_GVIMRC_FILE "/etc/gvimrc"' &gt;&gt; src/feature.h</userinput></screen>
34 <para>Now prepare Vim for compilation:</para>
36 <screen><userinput>./configure --prefix=/usr</userinput></screen>
38 <para>Compile the package:</para>
40 <screen><userinput>make</userinput></screen>
42 <para>This package has a test suite available which performs a number of
43 checks to ensure it will function correctly. However, the Vim test suite will
44 output a whole lot of seemingly garbage characters to screen which can
45 occasionally wreak havoc with the running terminal. Accordingly, the running of
46 the test suite here is optional. Should you choose to run the Vim test suite,
47 the following command will do so:</para>
49 <screen><userinput>make test</userinput></screen>
51 <para>And install the package:</para>
53 <screen><userinput>make install</userinput></screen>
55 <para>When called as <command>vi</command>, <command>vim</command>
56 will run in old-fashioned vi-mode. To allow this, create a symlink:</para>
58 <screen><userinput>ln -s vim /usr/bin/vi</userinput></screen>
60 <para>If you are going to install the X Window system on your LFS system, you
61 may want to re-compile Vim after having installed X. Vim comes with a nice GUI
62 version of the editor that requires X and a few other libraries to be
63 installed. For more information read the Vim documentation.</para>
65 </sect2>
67 &c6-cf-vim;
69 &aa-vim-shortdesc;
70 &aa-vim-desc;
72 </sect1>