diff options
author | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2006-08-08 03:24:41 +0000 |
---|---|---|
committer | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2006-08-08 03:24:41 +0000 |
commit | 92e51a3bc16ee074c405708b505a39d79251d705 (patch) | |
tree | 546f6e07e821b9abc4293d4e703b9314e8ddfbd6 /chapter06 | |
parent | ba812a2fb7b9c010d5f53da5c7b568565e550ee8 (diff) |
Vim text updates
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7765 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/vim.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/chapter06/vim.xml b/chapter06/vim.xml index c8b613b6a..db41ce00f 100644 --- a/chapter06/vim.xml +++ b/chapter06/vim.xml @@ -174,18 +174,18 @@ endif " End /etc/vimrc</literal> EOF</userinput></screen> - <para>The <parameter>set nocompatible</parameter> makes + <para>The <parameter>set nocompatible</parameter> setting makes <command>vim</command> behave in a more useful way (the default) than the vi-compatible manner. Remove the <quote>no</quote> to keep the old <command>vi</command> behavior. The <parameter>set - backspace=2</parameter> allows backspacing over line breaks, + backspace=2</parameter> setting allows backspacing over line breaks, autoindents, and the start of insert. The <parameter>syntax - on</parameter> enables vim's syntax highlighting. Finally, the - <emphasis>if</emphasis> statement with the <parameter>set - background=dark</parameter> corrects <command>vim</command>'s guess - about the background color of some terminal emulators. This gives the - highlighting a better color scheme for use on the black background of - these programs.</para> + on</parameter> parameter enables vim's syntax highlighting. Finally, + the <emphasis>if</emphasis> statement with the <parameter>set + background=dark</parameter> setting corrects <command>vim</command>'s + guess about the background color of some terminal emulators. This + gives the highlighting a better color scheme for use on the black + background of these programs.</para> <para>Documentation for other available options can be obtained by running the following command:</para> @@ -197,7 +197,7 @@ EOF</userinput></screen> To install spell files for your preferred language, download the <filename>*.spl</filename> and optionally, the <filename>*.sug</filename> files for your language and character encoding from <ulink - url="ftp://ftp.vim.org/pub/vim/runtime/spell/"/> and and save them to + url="ftp://ftp.vim.org/pub/vim/runtime/spell/"/> and save them to <filename class='directory'>/usr/share/vim/vim70/spell/</filename>.</para> <para>To use these spell files, some configuration in @@ -207,7 +207,7 @@ EOF</userinput></screen> set spell</literal></screen> <para>For more information, see the appropriate README file located - at the the URL above.</para> + at the URL above.</para> </note> </sect2> |