# Sakura Line - readline.
$include /etc/inputrc

set completion-ignore-case on
set completion-prefix-display-length 2
set show-all-if-ambiguous on
set show-all-if-unmodified on
set menu-complete-display-prefix on
set mark-symlinked-directories on
set match-hidden-files off
set page-completions off
set completion-query-items 200
set visible-stats on
set colored-stats on
set colored-completion-prefix on
set skip-completed-text on

# Up and Down search the history for what is already typed.
"\e[A": history-search-backward
"\e[B": history-search-forward

# Tab cycles through completions; Shift+Tab goes back.
TAB: menu-complete
"\e[Z": menu-complete-backward
