.inputrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sat, 03 Apr 2010 10:54:31 +0300
changeset 52 1481359f69d8
parent 51 5e6ee2b720fd
child 53 e38c00b4f0f0
permissions -rw-r--r--
Useful competition settings.

# 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

# Ignore case (on/off).
set completion-ignore-case on

set completion-query-items 100

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

# If set to 'on', completed directory names have a slash appended. The default is 'on'.
set mark-directories on

# If set to 'on', a character denoting a file's type is appended to the
# filename when listing possible completions. The default is 'off'.
set visible-stats on

# 'quoted-insert' binded to C-q or C-v by default, but C-q usually not worked
# because it handled by terminal driver before readline.
C-v: quoted-insert

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