Created
July 17, 2013 17:49
-
-
Save chaucerbao/6022794 to your computer and use it in GitHub Desktop.
Personal Bash readline init file for more intuitive behavior
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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