.inputrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sat, 03 Apr 2010 10:51:17 +0300
changeset 50 9a89ae1918c4
parent 37 5d56427b59a4
child 51 5e6ee2b720fd
permissions -rw-r--r--
How re-read ~/.inputrc.

# Settings for readline.
#
# Tips:
#   C-x C-r  re-read ~/.inputrc

# I like this!
set editing-mode emacs

# Don't strip characters to 7 bits when reading.
set input-meta on

# Allow iso-latin1 characters to be inserted rather than converted to
# prefix-meta sequences.
set convert-meta off

# Display characters with the eighth bit set directly rather than as
# meta-prefixed characters.
set output-meta on

# First tab suggests ambiguous variants.
set show-all-if-ambiguous on

C-q: quoted-insert

# Local Variables:
# mode: shell-script
# fill-column: 78
# End: