Changeset 173aea3
- Timestamp:
- 01/30/2018 06:35:44 PM (7 years ago)
- 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, 12.2, 12.2-rc1, 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/loongarch-12.2, xry111/mips64el, xry111/multilib, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
- Children:
- 869b0966
- Parents:
- 73b3eb9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/changelog.xml
r73b3eb9 r173aea3 46 46 <para>2018-01-30</para> 47 47 <itemizedlist> 48 <listitem> 49 <para>[bdubbs] - Make /etc/vimrc set defaults properly.</para> 50 </listitem> 48 51 <listitem revision="systemd"> 49 52 <para>[dj] - Update to systemd-237. Fixes -
chapter06/vim.xml
r73b3eb9 r173aea3 129 129 <literal>" Begin /etc/vimrc 130 130 131 " Ensure defaults are set before customizing settings, not after 132 source $VIMRUNTIME/defaults.vim 133 let skip_defaults_vim=1 134 131 135 set nocompatible 132 136 set backspace=2 133 set mouse= r137 set mouse= 134 138 syntax on 135 139 if (&term == "xterm") || (&term == "putty") … … 139 143 140 144 " End /etc/vimrc</literal> 141 EOF 142 143 touch ~/.vimrc</userinput></screen> 145 EOF</userinput></screen> 144 146 145 147 <para>The <parameter>set nocompatible</parameter> setting makes … … 149 151 setting allows backspacing over line breaks, autoindents, and the start of 150 152 insert. The <parameter>syntax on</parameter> parameter enables vim's syntax 151 highlighting. The <parameter>set mouse= r</parameter> setting enables153 highlighting. The <parameter>set mouse=</parameter> setting enables 152 154 proper pasting of text with the mouse when working in chroot or over a 153 155 remote connection. Finally, the <emphasis>if</emphasis> statement with the … … 156 158 emulators. This gives the highlighting a better color scheme for use on the 157 159 black background of these programs.</para> 158 160 <!-- 159 161 <para>Creating an empty <filename>~/.vimrc</filename> prevents vim from 160 162 overriding settings in <filename>/etc/vimrc</filename> by using 161 163 <filename>/usr/share/vim/vim80/defaults.vim</filename>.</para> 162 164 --> 163 165 <para>Documentation for other available options can be obtained by 164 166 running the following command:</para>
Note:
See TracChangeset
for help on using the changeset viewer.