Skip to content

Instantly share code, notes, and snippets.

@chaucerbao
Created July 17, 2013 17:49
Show Gist options
  • Save chaucerbao/6022794 to your computer and use it in GitHub Desktop.
Save chaucerbao/6022794 to your computer and use it in GitHub Desktop.
Personal Bash readline init file for more intuitive behavior
set completion-ignore-case on
set show-all-if-ambiguous on
# tab: menu-complete
# Use Unicode & do NOT use the "8bit hack" to input/output non-ASCII characters
# See http://code.google.com/p/iterm2/wiki/Keybindings
set input-meta on
set output-meta on
set convert-meta off
# When pressing up or down arrows,
# show only history entries that match what was already typed
"\e[A":history-search-backward
"\e[B":history-search-forward
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment