Spelling
[linux_from_scratch.git] / chapter07 / inputrc.xml
blob45a102ea322e9cbd9b73cc12e48f3915cf289ac3
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3   "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4    <!ENTITY % general-entities SYSTEM "../general.ent">
5   %general-entities;
6 ]>
8 <sect1 id="ch-scripts-inputrc">
9   <?dbhtml filename="inputrc.html"?>
11   <title>Creating the /etc/inputrc File</title>
13   <indexterm zone="ch-scripts-inputrc">
14     <primary sortas="e-/etc/inputrc">/etc/inputrc</primary>
15   </indexterm>
17   <para>The <filename>inputrc</filename> file handles keyboard mapping for
18   specific situations. This file is the startup file used by Readline &mdash; the
19   input-related library &mdash; used by Bash and most other shells.</para>
21   <para>Most people do not need user-specific keyboard mappings so the command
22   below creates a global <filename>/etc/inputrc</filename> used by everyone who
23   logs in. If you later decide you need to override the defaults on a per-user
24   basis, you can create a <filename>.inputrc</filename> file in the user's home
25   directory with the modified mappings.</para>
27   <para>For more information on how to edit the <filename>inputrc</filename>
28   file, see <command>info bash</command> under the <emphasis>Readline Init
29   File</emphasis> section. <command>info readline</command> is also a good
30   source of information.</para>
32   <para>Below is a generic global <filename>inputrc</filename> along with comments
33   to explain what the various options do. Note that comments cannot be on the same
34   line as commands. Create the file using the following command:</para>
36 <screen><userinput>cat &gt; /etc/inputrc &lt;&lt; "EOF"
37 <literal># Begin /etc/inputrc
38 # Modified by Chris Lynn &lt;roryo@roryo.dynup.net&gt;
40 # Allow the command prompt to wrap to the next line
41 set horizontal-scroll-mode Off
43 # Enable 8bit input
44 set meta-flag On
45 set input-meta On
47 # Turns off 8th bit stripping
48 set convert-meta Off
50 # Keep the 8th bit for display
51 set output-meta On
53 # none, visible or audible
54 set bell-style none
56 # All of the following map the escape sequence of the value
57 # contained in the 1st argument to the readline specific functions
58 "\eOd": backward-word
59 "\eOc": forward-word
61 # for linux console
62 "\e[1~": beginning-of-line
63 "\e[4~": end-of-line
64 "\e[5~": beginning-of-history
65 "\e[6~": end-of-history
66 "\e[3~": delete-char
67 "\e[2~": quoted-insert
69 # for xterm
70 "\eOH": beginning-of-line
71 "\eOF": end-of-line
73 # for Konsole
74 "\e[H": beginning-of-line
75 "\e[F": end-of-line
77 # End /etc/inputrc</literal>
78 EOF</userinput></screen>
80 </sect1>