···11+# /etc/inputrc - global inputrc for libreadline
22+# See readline(3readline) and `info rluserman' for more information.
33+44+# Be 8 bit clean.
55+set input-meta on
66+set output-meta on
77+88+# To allow the use of 8bit-characters like the german umlauts, uncomment
99+# the line below. However this makes the meta key not work as a meta key,
1010+# which is annoying to those which don't need to type in 8-bit characters.
1111+1212+# set convert-meta off
1313+1414+# try to enable the application keypad when it is called. Some systems
1515+# need this to enable the arrow keys.
1616+# set enable-keypad on
1717+1818+# see /usr/share/doc/bash/inputrc.arrows for other codes of arrow keys
1919+2020+# do not bell on tab-completion
2121+# set bell-style none
2222+# set bell-style visible
2323+2424+# some defaults / modifications for the emacs mode
2525+$if mode=emacs
2626+2727+# allow the use of the Home/End keys
2828+"\e[1~": beginning-of-line
2929+"\e[4~": end-of-line
3030+3131+# allow the use of the Delete/Insert keys
3232+"\e[3~": delete-char
3333+"\e[2~": quoted-insert
3434+3535+# mappings for "page up" and "page down" to step to the beginning/end
3636+# of the history
3737+# "\e[5~": beginning-of-history
3838+# "\e[6~": end-of-history
3939+4040+# alternate mappings for "page up" and "page down" to search the history
4141+# "\e[5~": history-search-backward
4242+# "\e[6~": history-search-forward
4343+4444+# mappings for Ctrl-left-arrow and Ctrl-right-arrow for word moving
4545+"\e[1;5C": forward-word
4646+"\e[1;5D": backward-word
4747+"\e[5C": forward-word
4848+"\e[5D": backward-word
4949+"\e\e[C": forward-word
5050+"\e\e[D": backward-word
5151+5252+$if term=rxvt
5353+"\e[7~": beginning-of-line
5454+"\e[8~": end-of-line
5555+"\eOc": forward-word
5656+"\eOd": backward-word
5757+$endif
5858+5959+# for non RH/Debian xterm, can't hurt for RH/Debian xterm
6060+# "\eOH": beginning-of-line
6161+# "\eOF": end-of-line
6262+6363+# for freebsd console
6464+# "\e[H": beginning-of-line
6565+# "\e[F": end-of-line
6666+6767+$endif