2024-01-18 19:53:23 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-03-21 18:42:58 +00:00
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
2004-05-06 17:22:04 +01:00
|
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
2005-12-18 18:31:04 +00:00
|
|
|
|
2020-02-09 20:50:38 +00:00
|
|
|
<sect1 id="ch-config-inputrc">
|
2005-12-18 18:31:04 +00:00
|
|
|
<?dbhtml filename="inputrc.html"?>
|
|
|
|
|
|
|
|
<title>Creating the /etc/inputrc File</title>
|
2004-05-06 17:22:04 +01:00
|
|
|
|
2020-02-09 20:50:38 +00:00
|
|
|
<indexterm zone="ch-config-inputrc">
|
2005-12-18 18:31:04 +00:00
|
|
|
<primary sortas="e-/etc/inputrc">/etc/inputrc</primary>
|
|
|
|
</indexterm>
|
2005-02-19 22:16:42 +00:00
|
|
|
|
2016-11-07 21:02:11 +00:00
|
|
|
<para>The <filename>inputrc</filename> file is the configuration file for
|
2020-06-12 21:42:32 +01:00
|
|
|
the readline library, which provides editing capabilities while the user is
|
2018-12-31 18:20:04 +00:00
|
|
|
entering a line from the terminal. It works by translating keyboard inputs
|
2020-06-12 21:42:32 +01:00
|
|
|
into specific actions. Readline is used by bash and most other shells as
|
2016-11-07 21:02:11 +00:00
|
|
|
well as many other applications.</para>
|
2005-06-23 18:22:06 +01:00
|
|
|
|
2016-11-07 21:02:11 +00:00
|
|
|
<para>Most people do not need user-specific functionality so the command
|
2005-12-18 18:31:04 +00:00
|
|
|
below creates a global <filename>/etc/inputrc</filename> used by everyone who
|
2020-06-12 21:42:32 +01:00
|
|
|
logs in. If you later decide you need to override the defaults on a per user
|
2005-12-18 18:31:04 +00:00
|
|
|
basis, you can create a <filename>.inputrc</filename> file in the user's home
|
|
|
|
directory with the modified mappings.</para>
|
2005-06-23 18:22:06 +01:00
|
|
|
|
2005-12-18 18:31:04 +00:00
|
|
|
<para>For more information on how to edit the <filename>inputrc</filename>
|
|
|
|
file, see <command>info bash</command> under the <emphasis>Readline Init
|
|
|
|
File</emphasis> section. <command>info readline</command> is also a good
|
|
|
|
source of information.</para>
|
2005-06-23 18:22:06 +01:00
|
|
|
|
2005-12-18 18:31:04 +00:00
|
|
|
<para>Below is a generic global <filename>inputrc</filename> along with comments
|
|
|
|
to explain what the various options do. Note that comments cannot be on the same
|
|
|
|
line as commands. Create the file using the following command:</para>
|
2004-06-19 17:54:58 +01:00
|
|
|
|
|
|
|
<screen><userinput>cat > /etc/inputrc << "EOF"
|
2005-01-30 12:51:22 +00:00
|
|
|
<literal># Begin /etc/inputrc
|
|
|
|
# Modified by Chris Lynn <roryo@roryo.dynup.net>
|
2004-05-06 17:22:04 +01:00
|
|
|
|
2005-06-23 18:22:06 +01:00
|
|
|
# Allow the command prompt to wrap to the next line
|
2004-05-06 17:22:04 +01:00
|
|
|
set horizontal-scroll-mode Off
|
|
|
|
|
2022-03-24 17:11:57 +00:00
|
|
|
# Enable 8-bit input
|
2005-06-26 10:35:10 +01:00
|
|
|
set meta-flag On
|
2004-05-06 17:22:04 +01:00
|
|
|
set input-meta On
|
|
|
|
|
|
|
|
# Turns off 8th bit stripping
|
|
|
|
set convert-meta Off
|
|
|
|
|
|
|
|
# Keep the 8th bit for display
|
|
|
|
set output-meta On
|
|
|
|
|
|
|
|
# none, visible or audible
|
|
|
|
set bell-style none
|
|
|
|
|
2007-04-05 20:03:40 +01:00
|
|
|
# All of the following map the escape sequence of the value
|
|
|
|
# contained in the 1st argument to the readline specific functions
|
2004-05-06 17:22:04 +01:00
|
|
|
"\eOd": backward-word
|
|
|
|
"\eOc": forward-word
|
|
|
|
|
|
|
|
# for linux console
|
|
|
|
"\e[1~": beginning-of-line
|
|
|
|
"\e[4~": end-of-line
|
|
|
|
"\e[5~": beginning-of-history
|
|
|
|
"\e[6~": end-of-history
|
|
|
|
"\e[3~": delete-char
|
|
|
|
"\e[2~": quoted-insert
|
|
|
|
|
|
|
|
# for xterm
|
|
|
|
"\eOH": beginning-of-line
|
|
|
|
"\eOF": end-of-line
|
|
|
|
|
|
|
|
# for Konsole
|
|
|
|
"\e[H": beginning-of-line
|
|
|
|
"\e[F": end-of-line
|
|
|
|
|
2005-01-30 12:51:22 +00:00
|
|
|
# End /etc/inputrc</literal>
|
2004-06-19 17:54:58 +01:00
|
|
|
EOF</userinput></screen>
|
2004-05-06 17:22:04 +01:00
|
|
|
|
|
|
|
</sect1>
|