# ~/.inputrc - Readline configuration # Enable 8bit input set meta-flag on set input-meta on set convert-meta off set output-meta on # Do not bell on tab-completion set bell-style none # Case-insensitive tab completion set completion-ignore-case on # Append file type indicator to entries set visible-stats on # Show all completions as soon as I press tab, even if there's more than one set show-all-if-ambiguous on # Be more intelligent when autocompleting by also looking at the text after # the cursor. For example, when the current line is "cd ~/src/mozil", and # the cursor is on the "z", pressing Tab will not autocomplete it to "cd ~/src/mozillail", # but to "cd ~/src/mozilla". set skip-completed-text on # Allow UTF-8 input and output, instead of showing stuff like $'\0123\0456' set input-meta on set output-meta on set convert-meta off # Use the text that has already been typed as the prefix for searching through # commands (i.e. more intelligent Up/Down behavior) "\e[A": history-search-backward "\e[B": history-search-forward