Changeset 3546862


Ignore:
Timestamp:
06/10/2004 11:10:55 AM (20 years ago)
Author:
Alexander E. Patrakov <alexander@…>
Branches:
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.0, 6.1, 6.1.1, 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
Children:
456a1d92
Parents:
b5b61fd
Message:

Fixed the previous commit. Removed the "background" option from /etc/vimrc

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rb5b61fd r3546862  
    106106</listitem>
    107107
     108<listitem><para>June 10, 2004 [alexander]: Reverted the bogus change of package
     109order. Removed the "background" line from /etc/vimrc because it matches the
     110default on Linux console</para></listitem>
     111
    108112<listitem><para>June 10, 2004 [alexander]: Added a command to autodetect the
    109113character set of files being edited to /etc/vimrc
  • chapter06/chapter06.xml

    rb5b61fd r3546862  
    3131<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="ncurses.xml"/>
    3232<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="readline.xml"/>
     33<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="vim.xml"/>
    3334<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="m4.xml"/>
    3435<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="bison.xml"/>
     
    3839<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="flex.xml"/>
    3940<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gettext.xml"/>
    40 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="vim.xml"/>
    4141<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="net-tools.xml"/>
    4242<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="inetutils.xml"/>
  • chapter06/vim.xml

    rb5b61fd r3546862  
    5252<userinput>--enable-multibyte</userinput> switch
    5353includes support for editing files in multibyte character encodings into
    54 vim. It is needed for those people who ignore our recommendation not to
     54<command>vim</command>.
     55It is needed for those people who ignore our recommendation not to
    5556use LFS in locales with multibyte character sets. It is also needed for
    5657people who want to be able to edit text files initially created
     
    105106set backspace=2
    106107syntax on
    107 set background=dark
    108108set fileencodings=ucs-bom,utf-8,<replaceable>your-8-bit-charset</replaceable>
    109109
     
    117117backspacing over line breaks, autoindents and the start of insert. The
    118118<emphasis>syntax on</emphasis> enables <command>vim</command>'s
    119 syntax highliting, while <emphasis>set background=dark</emphasis> gives the
    120 highliting a better color scheme for use on the black background of a linux
    121 console.  If you later use X and terminals with a light background, changing
    122 this will be useful. The <emphasis>set fileencodings=...</emphasis> makes
    123 <command>vim</command> capable of detecting the character set of the
    124 file being edited. This is useful because bleeding-edge distributions
     119syntax highliting. The <emphasis>set fileencodings=...</emphasis> makes
     120<command>vim</command> capable of automatically detecting the character
     121set of the file being edited (replace
     122"<replaceable>your-8-bit-charset</replaceable>"
     123with the value appropriate for your country, e.g. iso-8859-15 in Italy).
     124This line is useful because bleeding-edge distributions
    125125like Fedora Core use UTF-8, and conservative ones like Debian
    126126use traditional 8-bit encodings for text files. If you have not
Note: See TracChangeset for help on using the changeset viewer.