inputrc.xml 2.4 KB

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